Skip to content

Commit

Permalink
loosen tolerance in test_x0_working to pass with alternate BLAS backends
Browse files Browse the repository at this point in the history
  • Loading branch information
h-vetinari committed Jun 13, 2024
1 parent c36288c commit e21e454
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/sparse/linalg/_isolve/tests/test_iterative.py
Original file line number Diff line number Diff line change
Expand Up @@ -506,7 +506,7 @@ def test_x0_working(solver):

x, info = solver(A, b, x0=x0, **kw)
assert info == 0
assert norm(A @ x - b) <= 2e-6*norm(b)
assert norm(A @ x - b) <= 3e-6*norm(b)


def test_x0_equals_Mb(case):
Expand Down

0 comments on commit e21e454

Please sign in to comment.