tinyarray comparison is not consistent with tuple comparison
Tinyarrays should compare in a manner consistent with tuples, however they do not. Example:
import tinyarray as ta
a = (0, 0)
b = (1, 1)
assert a < b
assert ta.array(a) < ta.array(b)
Tinyarrays should compare in a manner consistent with tuples, however they do not. Example:
import tinyarray as ta
a = (0, 0)
b = (1, 1)
assert a < b
assert ta.array(a) < ta.array(b)