Skip to content

Commit c5a92d4

Browse files
Update lib/NonlinearSolveSpectralMethods/src/solve.jl
1 parent 37d169c commit c5a92d4

File tree

1 file changed

+2
-2
lines changed
  • lib/NonlinearSolveSpectralMethods/src

1 file changed

+2
-2
lines changed

lib/NonlinearSolveSpectralMethods/src/solve.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ end
7575
function InternalAPI.reinit_self!(
7676
cache::GeneralizedDFSaneCache, args...; p = cache.p, u0 = cache.u,
7777
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...
78+
maxiters = hasproperty(cache, :maxiters) ? cache.maxiters : 1000,
79+
maxtime = hasproperty(cache, :maxtime) ? cache.maxtime : nothing, kwargs...
8080
)
8181
Utils.reinit_common!(cache, u0, p, alias_u0)
8282
T = eltype(u0)

0 commit comments

Comments
 (0)