Skip to content

Commit

Permalink
TST: sparse/arpack: bump test tolerances (fail on some platforms othe…
Browse files Browse the repository at this point in the history
…rwise)
  • Loading branch information
pv committed Jun 19, 2011
1 parent 448fcb6 commit 9728c09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scipy/sparse/linalg/eigen/arpack/tests/test_arpack.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
# precision for tests
_ndigits = {'f': 3, 'd': 11, 'F': 3, 'D': 11}
_rtol = {'f': 2000 * np.finfo(np.float32).eps,
'd': 1000 * np.finfo(np.float64).eps,
'd': 2000 * np.finfo(np.float64).eps,
'F': 2000 * np.finfo(np.float32).eps,
'D': 1000 * np.finfo(np.float64).eps}
'D': 2000 * np.finfo(np.float64).eps}
_atol = _rtol

def generate_matrix(N, complex=False, hermitian=False,
Expand Down

0 comments on commit 9728c09

Please sign in to comment.