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 37d169c commit c5a92d4Copy full SHA for c5a92d4
lib/NonlinearSolveSpectralMethods/src/solve.jl
@@ -75,8 +75,8 @@ end
75
function InternalAPI.reinit_self!(
76
cache::GeneralizedDFSaneCache, args...; p = cache.p, u0 = cache.u,
77
alias_u0::Bool = hasproperty(cache, :alias_u0) ? cache.alias_u0 : false,
78
- maxiters = hasproperty(maxiters, :maxiters) ? cache.maxiters : 1000,
79
- maxtime = hasproperty(maxtime, :maxtime) ? cache.maxtime : nothing, kwargs...
+ maxiters = hasproperty(cache, :maxiters) ? cache.maxiters : 1000,
+ maxtime = hasproperty(cache, :maxtime) ? cache.maxtime : nothing, kwargs...
80
)
81
Utils.reinit_common!(cache, u0, p, alias_u0)
82
T = eltype(u0)
0 commit comments