Skip to content

Commit

Permalink
Update src/flint/fmpz_mat.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Oct 18, 2024
1 parent 7ff6313 commit 5a2bf5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flint/fmpz_mat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1835,7 +1835,7 @@ function mul!(z::ZZMatrixOrPtr, a::ZZMatrixOrPtr, b::ZZRingElemOrPtr)
end

mul!(z::ZZMatrixOrPtr, a::ZZMatrixOrPtr, b::Integer) = mul!(z, a, flintify(b))
mul!(z::ZZMatrixOrPtr, a::Union{Integer, ZZRingElemOrPtr}, b::ZZMatrixOrPtr) = mul!(z, b, a)
mul!(z::ZZMatrixOrPtr, a::IntegerUnionOrPtr, b::ZZMatrixOrPtr) = mul!(z, b, a)

function addmul!(z::ZZMatrixOrPtr, a::ZZMatrixOrPtr, b::ZZRingElemOrPtr)
ccall((:fmpz_mat_scalar_addmul_fmpz, libflint), Nothing,
Expand Down

0 comments on commit 5a2bf5b

Please sign in to comment.