Skip to content

Commit 055cfc4

Browse files
Merge pull request #2193 from SciML/interface5
Fix relaxation test
2 parents 5a7c612 + f8e87c0 commit 055cfc4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/nlsolve/newton.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -483,9 +483,9 @@ function relax!(dz, nlsolver::AbstractNLSolver, integrator::DEIntegrator, f::TF,
483483
f = f,
484484
linesearch = linesearch
485485

486-
@unpack uprev, t, p, dt, opts = integrator
487-
@unpack z, tmp, ztmp, γ, iter, cache = nlsolver
488-
@unpack ustep, atmp = cache
486+
@unpack uprev, t, p, dt, opts, isdae = integrator
487+
@unpack z, tmp, ztmp, γ, iter, α, cache, method = nlsolver
488+
@unpack ustep, atmp, tstep, k, invγdt, tstep, k, invγdt = cache
489489
function resid(z)
490490
# recompute residual (rhs)
491491
if isdae

0 commit comments

Comments
 (0)