Closed fernandohds564 closed 3 months ago
A simple lattice reversion:
mod2 = mod[::-1]
did not work because the resulting slice had a -1 as last element and the vector object from C++ could not understand this value.
Now, all slices are treated as python lists.
A simple lattice reversion:
did not work because the resulting slice had a -1 as last element and the vector object from C++ could not understand this value.
Now, all slices are treated as python lists.