Skip to content

Commit

Permalink
bump Rosenbrock23 maxiters on hard DAE regression test
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 11, 2023
1 parent 92cca24 commit db7341e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/regression/hard_dae.jl
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,7 @@ refsol = solve(prob, Rodas4(), saveat = 0.1, callback = cb, tstops = [1.0], relt
for solver in (Rodas4, Rodas4P, Rodas5, Rodas5P, FBDF, QNDF, Rosenbrock23)
@show solver
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)
@test sol.retcode == ReturnCode.Success
Expand Down

0 comments on commit db7341e

Please sign in to comment.