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.
1 parent 37bad3f commit 37d169cCopy full SHA for 37d169c
lib/NonlinearSolveQuasiNewton/src/solve.jl
@@ -108,8 +108,8 @@ end
108
function InternalAPI.reinit_self!(
109
cache::QuasiNewtonCache, args...; p = cache.p, u0 = cache.u,
110
alias_u0::Bool = hasproperty(cache, :alias_u0) ? cache.alias_u0 : false,
111
- maxiters = hasproperty(maxiters, :maxiters) ? cache.maxiters : 1000,
112
- maxtime = hasproperty(maxtime, :maxtime) ? cache.maxtime : nothing, kwargs...
+ maxiters = hasproperty(cache, :maxiters) ? cache.maxiters : 1000,
+ maxtime = hasproperty(cache, :maxtime) ? cache.maxtime : nothing, kwargs...
113
)
114
Utils.reinit_common!(cache, u0, p, alias_u0)
115
0 commit comments