Skip to content

Commit e2531a9

Browse files
Merge pull request #1032 from JuliaDiffEq/YingboMa-patch-1
internalnorm(J) -> internalnorm(J, t)
2 parents 893f582 + 92ec4e0 commit e2531a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/derivative_utils.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ function calc_W(integrator, cache, dtgamma, repeat_step, W_transform=false)
469469
end
470470
end
471471
(W isa WOperator && unwrap_alg(integrator, true) isa NewtonAlgorithm) && (W = DiffEqBase.update_coefficients!(W,uprev,p,t)) # we will call `update_coefficients!` in NLNewton
472-
is_compos && (integrator.eigen_est = isarray ? constvalue(opnorm(J, Inf)) : integrator.opts.internalnorm(J))
472+
is_compos && (integrator.eigen_est = isarray ? constvalue(opnorm(J, Inf)) : integrator.opts.internalnorm(J, t))
473473
return W
474474
end
475475

0 commit comments

Comments
 (0)