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
Iterators for 0-dimensional matrix spaces should not fail but return the zero element and nothing for subsequent calls
julia> k = GF(3);
julia> m = matrix_space(k, 0, 1);
julia> for x in m ; end
ERROR: BoundsError: attempt to access 0-element Vector{Nemo.fpField} at index [1]
Matrix algebras over finite rings should define an iterator:
julia> m = matrix_algebra(k, 1);
julia> for x in m; end
ERROR: MethodError: no method matching iterate(::AlgMat{fpFieldElem, fpMatrix})
The text was updated successfully, but these errors were encountered:
Iterators for 0-dimensional matrix spaces should not fail but return the zero element and
nothing
for subsequent callsMatrix algebras over finite rings should define an iterator:
The text was updated successfully, but these errors were encountered: