Skip to content

Commit

Permalink
fix: simple klement implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Oct 7, 2024
1 parent 9bdc61c commit 277ab9f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/SimpleNonlinearSolve/src/klement.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ function SciMLBase.__solve(prob::ImmutableNonlinearProblem, alg::SimpleKlement,
x = Utils.maybe_unaliased(prob.u0, alias_u0)
T = eltype(x)
fx = Utils.get_fx(prob, x)
fx = Utils.eval_f(prob, fx, x)

abstol, reltol, tc_cache = NonlinearSolveBase.init_termination_cache(
prob, abstol, reltol, fx, x, termination_condition, Val(:simple))
Expand Down

0 comments on commit 277ab9f

Please sign in to comment.