Skip to content

Commit

Permalink
Fix another overlooked old array indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanaelbosch committed Feb 4, 2024
1 parent 115767f commit 8904c59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/perform_step.jl
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ function compute_scaled_error_estimate!(integ, cache)
DiffEqBase.calculate_residuals!(
err_tmp,
err_est_unscaled,
integ.u[1, :],
integ.uprev[1, :],
integ.u.x[1],
integ.uprev.x[1],
integ.opts.abstol,
integ.opts.reltol,
integ.opts.internalnorm,
Expand Down

0 comments on commit 8904c59

Please sign in to comment.