hilbert/Python/test2.py

7 lines
161 B
Python
Executable File

#!/usr/bin/python3
from hilbertgenerator import Vector, hilbertgenerator
n = 8
for r in hilbertgenerator(Vector(n, n), Vector(n, 0), Vector(0,n)):
print(r)