Skip to content

Commit 3b58592

Browse files
Update solve.jl
1 parent c2dfe1d commit 3b58592

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solve.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ function SciMLBase.__solve(prob::SciMLBase.AbstractSteadyStateProblem, alg::Dyna
3737
end
3838

3939
tc_cache = init(prob, termination_condition, du, prob.u0; abstol, reltol)
40-
abstol = DiffEqBase.get_abstol(tc_cache)
41-
reltol = DiffEqBase.get_reltol(tc_cache)
40+
abstol = NonlinearSolveBase.get_abstol(tc_cache)
41+
reltol = NonlinearSolveBase.get_reltol(tc_cache)
4242

4343
function terminate_function(u, t, integrator)
4444
return tc_cache(get_du(integrator), integrator.u, integrator.uprev, t)

0 commit comments

Comments
 (0)