Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
lgoettgens committed Jul 6, 2023
1 parent 6133c29 commit 6b64a36
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/HeckeMiscMatrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ function denominator(M::QQMatrix)
return d
end

transpose!(A::Union{ZZMatrix,QQMatrix}) = transpose!(A, A)
transpose!(A::Union{ZZMatrix, QQMatrix}) = is_square(A) ? transpose!(A, A) : transpose(A)
transpose!(A::MatrixElem) = transpose(A)

function transpose!(A::ZZMatrix, B::ZZMatrix)
ccall((:fmpz_mat_transpose, libflint), Nothing,
Expand Down

0 comments on commit 6b64a36

Please sign in to comment.