Skip to content

Commit

Permalink
umfpack test for older julia versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jarlebring committed Jun 28, 2023
1 parent 1c8c7fa commit 3a4eba6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/linsolver.jl
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ using LinearAlgebra
# test that the norm is at least 10 times bigger with no iterative refinements
norm0 = norm(M*r0 - x)
norm2 = norm(M*r2 - x)
@test (norm0 > norm2) || abs(norm0-norm2)/abs(norm(0))<1e-2
@test (norm0 > norm2) || abs(norm0-norm2)/abs(norm0)<1e-2

end

Expand Down

0 comments on commit 3a4eba6

Please sign in to comment.