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
The function seems to update only coefficients and not the matrix itself.
julia> R = matrix_algebra(QQ,2) Matrix algebra of dimension 4 over Rational field julia> b = R(matrix(QQ,[3 4; 5 6])) [3 4; 5 6] julia> Hecke.addeq!(b,b) [3 4; 5 6] julia> b.coeffs 4-element Vector{QQFieldElem}: 6 10 8 12
The text was updated successfully, but these errors were encountered:
fix: wrong addeq! for MatAlgebraElem
e5e0f9a
- fixes #1547
dd0ca57
fix: wrong addeq! for MatAlgebraElem (#1548)
3c29ce9
Successfully merging a pull request may close this issue.
The function seems to update only coefficients and not the matrix itself.
The text was updated successfully, but these errors were encountered: