Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
The SPRKStep module now accounts for zero coefficients in the SPRK tables, eliminating
extraneous function evaluations.

A bug preventing a user supplied `SUNStepper_ResetCheckpointIndex` function from being
called was fixed.

### Deprecation Notices

## Changes to SUNDIALS in release 7.5.0
Expand Down
3 changes: 3 additions & 0 deletions doc/shared/RecentChanges.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,7 @@
The SPRKStep module now accounts for zero coefficients in the SPRK tables, eliminating
extraneous function evaluations.

A bug preventing a user supplied :c:func:`SUNStepper_ResetCheckpointIndex` function from being
called was fixed.

**Deprecation Notices**
2 changes: 1 addition & 1 deletion src/sundials/sundials_stepper.c
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ SUNErrCode SUNStepper_ResetCheckpointIndex(SUNStepper stepper,
suncountertype ckptIdxR)
{
SUNFunctionBegin(stepper->sunctx);
if (stepper->ops->reset)
if (stepper->ops->resetcheckpointindex)
{
return stepper->ops->resetcheckpointindex(stepper, ckptIdxR);
}
Expand Down