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.
2 parents bdab5fc + 7e2f87b commit aaf7a62Copy full SHA for aaf7a62
src/solve.jl
@@ -50,7 +50,7 @@ function SciMLBase.__solve(prob::SciMLBase.AbstractSteadyStateProblem, alg::Dyna
50
haskey(kwargs, :callback) && (callback = CallbackSet(callback, kwargs[:callback]))
51
haskey(odesolve_kwargs, :callback) &&
52
(callback = CallbackSet(callback, odesolve_kwargs[:callback]))
53
-
+ kwargs = pairs(merge((; kwargs...), haskey(kwargs, :verbose) ? (verbose=true,) : (;)))
54
# Construct and solve the ODEProblem
55
odeprob = ODEProblem{isinplace(prob), true}(f, prob.u0, tspan, prob.p)
56
odesol = solve(odeprob, alg.alg, args...; abstol, reltol, kwargs...,
0 commit comments