We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e74125 commit 86bd7c7Copy full SHA for 86bd7c7
test/test_functions.jl
@@ -51,7 +51,7 @@ function jac_eval(rs::ReactionSystem, u, p, t; combinatoric_ratelaws = true, spa
51
prob = ODEProblem(rs, u, 0.0, p; jac = true, combinatoric_ratelaws, sparse)
52
J = sparse ? deepcopy(prob.f.jac_prototype) : zeros(length(u), length(u))
53
prob.f.jac(J, prob.u0, prob.p, t)
54
- @test J ≈ prob.f.jac(prob.u0, prob.p, t)
+ @test J ≈ prob.f.jac(prob.u0, prob.p, t) atol = 1e-14 rtol = 1e-14
55
return J
56
end
57
0 commit comments