Skip to content
Snippets Groups Projects
Commit 874cc208 authored by Dominic Kempf's avatar Dominic Kempf
Browse files

Fix python3 integer division

parent c8bf686d
No related branches found
No related tags found
No related merge requests found
......@@ -167,7 +167,7 @@ def greedy_vectorization_strategy(sumfacts, width):
result[k] = vert[k]
sumfacts.discard(sf)
horizontal = horizontal / 2
horizontal = horizontal // 2
vertical = vertical * 2
return result
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment