Skip to content

Commit

Permalink
catch one additional entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepijn de Vos committed Nov 13, 2023
1 parent 1c19d76 commit b3e6ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dense/generic_dense.jl
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@ function ode_interpolation!(vals, tvals, id::I, idxs, deriv::D, p,
cache) # update the kcurrent
if eltype(vals) <: AbstractArray
ode_interpolant!(vals[j], Θ, dt, timeseries[i₋], timeseries[i₊], ks[i₊],
cache, idxs, deriv)
cache, idxs, deriv, differential_vars)
else
vals[j] = ode_interpolant(Θ, dt, timeseries[i₋], timeseries[i₊], ks[i₊],
cache, idxs, deriv)
cache, idxs, deriv, differential_vars)
end
end
end
Expand Down

0 comments on commit b3e6ae3

Please sign in to comment.