Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
gardner48 committed May 12, 2024
1 parent 5811b5c commit e29fe49
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ Added the following MRI coupling tables
* `ARKODE_IMEX_MRI_GARK_MIDPOINT`

Users may now disable interpolated output in ARKODE by passing `ARK_INTERP_NONE`
to the `ARKodeSetInterpolantType`. When interpolation is disabled, rootfinding
is not supported, implicit methods must use the trivial predictor (the default
to `ARKodeSetInterpolantType`. When interpolation is disabled, rootfinding is
not supported, implicit methods must use the trivial predictor (the default
option), and interpolation at stop times cannot be used (interpolating at stop
times is disabled by default). With interpolation disabled, calling
`ARKodeEvolve` in `ARK_NORMAL` mode will return at or past the requested output
Expand Down
23 changes: 11 additions & 12 deletions doc/shared/RecentChanges.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,17 @@ Added the following MRI coupling tables
* ``ARKODE_IMEX_MRI_GARK_MIDPOINT``

Users may now disable interpolated output in ARKODE by passing
``ARK_INTERP_NONE`` to the :c:func:`ARKodeSetInterpolantType`. When
interpolation is disabled, rootfinding is not supported, implicit methods must
use the trivial predictor (the default option), and interpolation at stop times
cannot be used (interpolating at stop times is disabled by default). With
interpolation disabled, calling :c:func:`ARKodeEvolve` in ``ARK_NORMAL`` mode
will return at or past the requested output time (setting a stop time may still
be used to halt the integrator at a specific time). Disabling interpolation will
reduce the memory footprint of an integrator by two or more state vectors
(depending on the interpolant type and degree) which can be beneficial when
interpolation is not needed e.g., when integrating to a final time without
output in between or using an explicit fast time scale integrator with an MRI
method.
``ARK_INTERP_NONE`` to :c:func:`ARKodeSetInterpolantType`. When interpolation is
disabled, rootfinding is not supported, implicit methods must use the trivial
predictor (the default option), and interpolation at stop times cannot be used
(interpolating at stop times is disabled by default). With interpolation
disabled, calling :c:func:`ARKodeEvolve` in ``ARK_NORMAL`` mode will return at
or past the requested output time (setting a stop time may still be used to halt
the integrator at a specific time). Disabling interpolation will reduce the
memory footprint of an integrator by two or more state vectors (depending on the
interpolant type and degree) which can be beneficial when interpolation is not
needed e.g., when integrating to a final time without output in between or using
an explicit fast time scale integrator with an MRI method.

Added "Resize" capability to ARKODE's SPRKStep time-stepping module.

Expand Down

0 comments on commit e29fe49

Please sign in to comment.