Skip to content

Commit a0af050

Browse files
committed
bring back the accuracy
1 parent 96c244a commit a0af050

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/test_detest.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -427,8 +427,8 @@ def _test(solver, problems, higher):
427427
else:
428428
dt0 = None
429429
if solver.order(term) < 4: # pyright: ignore
430-
rtol = 1e-3
431-
atol = 1e-3
430+
rtol = 1e-6
431+
atol = 1e-6
432432
else:
433433
rtol = 1e-8
434434
atol = 1e-8
@@ -467,8 +467,8 @@ def scipy_fn(t, y):
467467
scipy_y1 = unravel(scipy_sol.y[:, 0])
468468

469469
if solver.order(term) < 4: # pyright: ignore
470-
rtol = 1e-1
471-
atol = 1e-1
470+
rtol = 1e-3
471+
atol = 1e-3
472472
else:
473473
rtol = 4e-5
474474
atol = 4e-5

0 commit comments

Comments
 (0)