Skip to content

Commit

Permalink
forgot a part
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 11, 2023
1 parent db7341e commit e088cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/regression/hard_dae.jl
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ for solver in (Rodas4, Rodas4P, Rodas5, Rodas5P, FBDF, QNDF, Rosenbrock23)
prob = ODEProblem(f, deepcopy(res.zero), (0, 20.0), deepcopy(p_inv))
maxiters = solver isa Rosenbrock23 ? 1e6 : 1e5
sol = solve(prob, solver(), saveat = 0.1, callback = cb, tstops = [1.0], reltol = 1e-12,
abstol = 1e-16)
abstol = 1e-16, maxiters = maxiters)
@test sol.retcode == ReturnCode.Success
@test sol.t[end] == 20.0
@test maximum(sol - refsol) < 1e-11
Expand Down

0 comments on commit e088cfd

Please sign in to comment.