Skip to content

Commit 089ea9a

Browse files
Relax lazy-W utility test tolerance for Rosenbrock-W J reuse
The lazy-W vs explicit-W comparison for Rosenbrock23 diverges at ~3e-4 with Jacobian reuse active. Relax atol from 2e-5 to 5e-4. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
1 parent 4ab6252 commit 089ea9a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/interface/utility_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ end
8484

8585
sol1_ip = solve(ODEProblem(fun1_ip, u0, tspan), Alg(); adaptive = false, dt = 0.01)
8686
sol2_ip = solve(ODEProblem(fun2_ip, u0, tspan), Alg(); adaptive = false, dt = 0.01)
87-
@test sol1_ip(1.0) sol2_ip(1.0) atol = 2.0e-5
87+
@test sol1_ip(1.0) sol2_ip(1.0) atol = 5.0e-4
8888
end
8989
end

0 commit comments

Comments
 (0)