You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FLINT 3.3 will change the internal representation of matrices to have an slong stride field instead of a pointer to an array of row pointers (flintlib/flint#2162).
This should not change the struct layout, but it does mean that some helpers in Nemo that access the internals need to be updated, e.g.:
FLINT 3.3 will change the internal representation of matrices to have an
slong stride
field instead of a pointer to an array of row pointers (flintlib/flint#2162).This should not change the struct layout, but it does mean that some helpers in Nemo that access the internals need to be updated, e.g.:
mat_entry_ptr(A::ZZMatrix, i::Int, j::Int) = unsafe_load(A.rows, i) + (j-1)*sizeof(ZZRingElem)
The text was updated successfully, but these errors were encountered: