Skip to content

Commit

Permalink
more maxiters
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 12, 2023
1 parent 1b5c1bf commit 5d0d39c
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 @@ -221,7 +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 ? 1e7 : 1e5
maxiters = solver isa Rosenbrock23 ? 1e8 : 1e5
sol = solve(prob, solver(), saveat = 0.1, callback = cb, tstops = [1.0], reltol = 1e-12,
abstol = 1e-16, maxiters = maxiters)
@test sol.retcode == ReturnCode.Success
Expand Down

0 comments on commit 5d0d39c

Please sign in to comment.