Commit 31cce65
Fix v7: second eachindex(sol2) in dense_tests, EEst access in TSRKC3 (#3457)
- test/regression/ode_dense_tests.jl line 69: second `eachindex(sol2)`
instance (1D linear problem loop) that was missed by #3446. Same RAT v4
issue — `eachindex(sol)` now returns CartesianIndices, use
`eachindex(sol2.u)` for the per-timestep iteration.
- lib/OrdinaryDiffEqStabilizedRK/src/rkc_perform_step.jl lines 1191 and
1323: `integrator.EEst = ...` throws `FieldError` since #3422 moved
EEst from the integrator struct to the controller cache. Replace with
`OrdinaryDiffEqCore.set_EEst!(integrator, ...)` matching every other
sublibrary.
Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>1 parent 428db4a commit 31cce65
File tree
2 files changed
+3
-3
lines changed- lib/OrdinaryDiffEqStabilizedRK/src
- test/regression
2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1188 | 1188 | | |
1189 | 1189 | | |
1190 | 1190 | | |
1191 | | - | |
| 1191 | + | |
1192 | 1192 | | |
1193 | 1193 | | |
1194 | 1194 | | |
| |||
1320 | 1320 | | |
1321 | 1321 | | |
1322 | 1322 | | |
1323 | | - | |
| 1323 | + | |
1324 | 1324 | | |
1325 | 1325 | | |
1326 | 1326 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
0 commit comments