Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
d6b4cb9
Removed extraneous copy of yn into yout in ONE_STEP mode (since ycur …
drreynolds Jan 15, 2026
d7472d5
Ran formatter
drreynolds Jan 15, 2026
feb4ec3
Apply suggestions from code review
drreynolds Jan 16, 2026
974c857
Merged from feature/stageprocessing
drreynolds Jan 26, 2026
0d716d7
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Jan 27, 2026
2483b74
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Jan 28, 2026
b0704c1
Merged with feature/stageprocessing
drreynolds Jan 28, 2026
b6f954b
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 3, 2026
eafb595
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 3, 2026
fc4444a
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 4, 2026
91d9767
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 4, 2026
fc0815e
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 4, 2026
12d2d75
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 10, 2026
282b7a7
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 10, 2026
fc85181
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 11, 2026
9a11e78
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 11, 2026
0a8072e
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 11, 2026
479681a
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 12, 2026
2073569
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 12, 2026
8055e9c
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 19, 2026
b0908a3
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 26, 2026
9fec3de
Fixed CHANGELOG.md and RecentChanges.rst, since previous updates were…
drreynolds Feb 26, 2026
96d05ed
Updated root-finding routines to use tempv4 instead of ycur when dete…
drreynolds Feb 26, 2026
1745089
Formatting
drreynolds Feb 27, 2026
2d9dc3f
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Feb 27, 2026
f9b311e
Apply suggestions from code review
drreynolds Mar 3, 2026
75590c0
Additional fix for bad merge
drreynolds Mar 3, 2026
603c9d1
Formatting
drreynolds Mar 3, 2026
31d9397
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 6, 2026
f9041ff
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 6, 2026
71f0e90
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 6, 2026
8330626
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 7, 2026
3fa09bc
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 11, 2026
58073cf
Merge branch 'feature/stageprocessing' into feature/fes-yout-copy
drreynolds Mar 11, 2026
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
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
The functions `CVodeGetUserDataB` and `IDAGetUserDataB` were added to CVODES
and IDAS, respectively.

Removed extraneous copy of output vector when using ARKODE in ONE_STEP mode.

### Bug Fixes

On the initial time step with a user-supplied initial step size, ARKODE and
Expand Down Expand Up @@ -44,7 +46,7 @@ called even when informational logging was disabled.

### Deprecation Notices

`SUNDIALSFileOpen` and `SUNDIALSFileClose` will be removed in the next major release.
`SUNDIALSFileOpen` and `SUNDIALSFileClose` will be removed in the next major release.
Use `SUNFileOpen` and `SUNFileClose` instead.

The `Convert` methods on the `sundials::kokkos:Vector`, `sundials::kokkos::DenseMatrix`,
Expand Down
4 changes: 3 additions & 1 deletion doc/shared/RecentChanges.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
The functions ``CVodeGetUserDataB`` and ``IDAGetUserDataB`` were added to CVODES
and IDAS, respectively.

Removed extraneous copy of output vector when using ARKODE in ONE_STEP mode.

**Bug Fixes**

On the initial time step with a user-supplied initial step size, ARKODE and
Expand Down Expand Up @@ -43,7 +45,7 @@ called even when informational logging was disabled.

**Deprecation Notices**

``SUNDIALSFileOpen`` and ``SUNDIALSFileClose`` will be removed in the next major release.
``SUNDIALSFileOpen`` and ``SUNDIALSFileClose`` will be removed in the next major release.
Use :c:func:`SUNFileOpen` and :c:func:`SUNFileClose` instead.

The ``Convert`` methods on the ``sundials::kokkos:Vector``, ``sundials::kokkos::DenseMatrix``,
Expand Down
3 changes: 1 addition & 2 deletions src/arkode/arkode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1149,8 +1149,7 @@ int ARKodeEvolve(void* arkode_mem, sunrealtype tout, N_Vector yout,
{
istate = ARK_SUCCESS;
ark_mem->tretlast = *tret = ark_mem->tcur;
N_VScale(ONE, ark_mem->yn, yout);
ark_mem->next_h = ark_mem->hprime;
ark_mem->next_h = ark_mem->hprime;
break;
}

Expand Down