Skip to content

Commit

Permalink
Fix snf_with_transform issue over non-domain (#1899)
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin authored Nov 15, 2024
1 parent 31f0414 commit 9d38ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5291,7 +5291,7 @@ function snf_kb!(S::MatrixElem{T}, U::MatrixElem{T}, K::MatrixElem{T}, with_traf
K[r, j] = reduce!(t1 + t2)
end
end
S[j, j] = divexact(S[i, i]*S[j, j], d)
S[j, j] = S[i, i]*divexact(S[j, j], d)
S[i, i] = d
end
end
Expand Down

0 comments on commit 9d38ede

Please sign in to comment.