Skip to content

Commit

Permalink
Test update
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-walker committed Dec 27, 2022
1 parent 90301dc commit 73c85a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/python/test_reactor.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,9 @@ def integrate(atol, rtol):

return nSteps

n_baseline = integrate(1e-10, 1e-20)
n_rtol = integrate(5e-7, 1e-20)
n_atol = integrate(1e-10, 1e-5)
n_baseline = integrate(1e-8, 1e-18)
n_rtol = integrate(1e-6, 1e-18)
n_atol = integrate(1e-8, 1e-4)
assert n_baseline > n_rtol
assert n_baseline > n_atol

Expand Down

0 comments on commit 73c85a5

Please sign in to comment.