Skip to content

Commit

Permalink
cool typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fieker committed Feb 7, 2025
1 parent d0470ce commit be7d0dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/ZZMatrix-linalg-test.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
for i = [1,5,10]
s, d = Nemo.dixon_solve(A^i, b)
@test A^i*s == d*b
s, d = Nemo.dixon_solve(A^i, transpose(b)); side = :left
s, d = Nemo.dixon_solve(A^i, transpose(b); side = :left)
@test s*A^i == d*transpose(b)

s, d = Nemo.dixon_solve(A^i, bb)
@test A^i*s == d*bb
s, d = Nemo.dixon_solve(A^i, transpose(bb)); side = :left
s, d = Nemo.dixon_solve(A^i, transpose(bb); side = :left)
@test s*A^i == d*transpose(bb)
end
end
Expand Down

0 comments on commit be7d0dc

Please sign in to comment.