We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setindex!(::fmpz_mat, ::fmpz, ::Int64)
julia> b = fmpz_mat(1, 3) [0 0 0] julia> b[2] = ZZ(2) ERROR: MethodError: no method matching setindex!(::fmpz_mat, ::fmpz, ::Int64)
However, we have
julia> b[2] 0
I suppose it's similar for other structs.
The text was updated successfully, but these errors were encountered:
The main reason we haven't provided setindex! is that Julia is column major, whereas Flint is row major. This cause general could in confusion.
However, we could support it for vectors only, now that this seems to be a thing in Nemo.
Sorry, something went wrong.
Resolved by Nemocas/AbstractAlgebra.jl#1407.
No branches or pull requests
However, we have
I suppose it's similar for other structs.
The text was updated successfully, but these errors were encountered: