@@ -66,21 +66,21 @@ function initialize!(nlsolver::NLSolver{<:NonlinearSolveAlg, true},
66
66
67
67
nlstep_data = f. nlstep_data
68
68
if nlstep_data != = nothing
69
- ztmp .= 0
69
+ atmp .= 0
70
70
if method === COEFFICIENT_MULTISTEP
71
71
nlstep_data. set_γ_c (nlstep_data. nlprob, (one (t), one (t), α * invγdt, tstep))
72
- nlstep_data. set_inner_tmp (nlstep_data. nlprob, ztmp )
72
+ nlstep_data. set_inner_tmp (nlstep_data. nlprob, atmp )
73
73
nlstep_data. set_outer_tmp (nlstep_data. nlprob, tmp)
74
74
else
75
75
nlstep_data. set_γ_c (nlstep_data. nlprob, (dt, γ, one (t), tstep))
76
76
nlstep_data. set_inner_tmp (nlstep_data. nlprob, tmp)
77
- nlstep_data. set_outer_tmp (nlstep_data. nlprob, ztmp )
77
+ nlstep_data. set_outer_tmp (nlstep_data. nlprob, atmp )
78
78
end
79
79
nlstep_data. nlprob. u0 .= @view z[nlstep_data. u0perm]
80
80
SciMLBase. reinit! (cache. cache, nlstep_data. nlprob. u0, p= nlstep_data. nlprob. p)
81
81
else
82
82
if f isa DAEFunction
83
- nlp_params = (tmp, ztmp , ustep, γ, α, tstep, k, invγdt, p, dt, f)
83
+ nlp_params = (tmp, atmp , ustep, γ, α, tstep, k, invγdt, p, dt, f)
84
84
else
85
85
nlp_params = (tmp, ustep, γ, α, tstep, k, invγdt, method, p, dt, f)
86
86
end
127
127
nlcache. prob, nlcache. alg, nlcache. u, nlcache. fu;
128
128
nlcache. retcode, nlcache. stats, nlcache. trace
129
129
)
130
- ztmp . = nlstep_data. nlprobmap (nlstepsol)
130
+ nlstep_data. nlprobmap (ztmp, nlstepsol)
131
131
ustep = compute_ustep! (ustep, tmp, γ, z, method)
132
132
calculate_residuals! (@view (atmp[nlstep_data. u0perm]), nlcache. fu,
133
133
@view (uprev[nlstep_data. u0perm]),
0 commit comments