Skip to content

Commit 9342c37

Browse files
du
1 parent 24a12c0 commit 9342c37

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/OrdinaryDiffEqRosenbrock/src/rosenbrock_caches.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ struct Rodas4ConstantCache{TF, UF, Tab, JType, WType, F, AD, rateType} <: Rosenb
705705
W::WType
706706
linsolve::F
707707
autodiff::AD
708-
ks::Vector{rateType}
708+
du::Vector{rateType}
709709
end
710710

711711
tabtype(::Rodas4) = Rodas4Tableau

lib/OrdinaryDiffEqRosenbrock/src/stiff_addsteps.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ function _ode_addsteps!(k, t, uprev, u, dt, f, p, cache::Rodas4ConstantCache,
291291
always_calc_begin = false, allow_calc_end = true,
292292
force_calc_end = false)
293293
if length(k) < 2 || always_calc_begin
294-
(;tf, uf, ks) = cache
294+
(;tf, uf, du) = cache
295295
(;A, C, gamma, c, d, H) = cache.tab
296296

297297
# Precalculations

0 commit comments

Comments
 (0)