Skip to content

Commit

Permalink
Merge pull request scipy#6293 from ev-br/la_roots_prec_bump
Browse files Browse the repository at this point in the history
TST: special: relax a test's precision
  • Loading branch information
ev-br authored Jun 30, 2016
2 parents 7ba767f + d205cba commit 5d1404b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/special/tests/test_orthogonal.py
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ def test_la_roots():

vgq(rootf(50), evalf(50), weightf(50), 0., np.inf, 5)
vgq(rootf(50), evalf(50), weightf(50), 0., np.inf, 25, atol=1e-13)
vgq(rootf(50), evalf(50), weightf(50), 0., np.inf, 100, atol=1e-13)
vgq(rootf(50), evalf(50), weightf(50), 0., np.inf, 100, rtol=1e-14, atol=1e-13)

x, w = orth.la_roots(5, 2, False)
y, v, m = orth.la_roots(5, 2, True)
Expand Down

0 comments on commit 5d1404b

Please sign in to comment.