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
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
fab1cecb7d91cff53b31730af5d00ff154c3b6ce
# Remove deprecated types in 7.0.0
cc6960349aa92e2bcad9168a6dacff99b21c329c
# Apply formatting to Fortran files
23581e8454955283139e551a7bcd1b85d8b7c77b
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SUNDIALS Changelog

## Changes to SUNDIALS in release X.Y.Z
## Changes to SUNDIALS in release 7.1.0

### Major Features

Expand Down
12 changes: 6 additions & 6 deletions CITATIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ they are using rather than the combined SUNDIALS online guide:
author = {Daniel R. Reynolds and David J. Gardner and Carol S. Woodward and Cody J. Balos},
title = {User Documentation for ARKODE},
year = {2024},
note = {v6.0.0}
note = {v6.1.0}
}
```

Expand All @@ -78,7 +78,7 @@ they are using rather than the combined SUNDIALS online guide:
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
title = {User Documentation for CVODE},
year = {2024},
note = {v7.0.0}
note = {v7.1.0}
}
```

Expand All @@ -87,7 +87,7 @@ they are using rather than the combined SUNDIALS online guide:
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
title = {User Documentation for CVODES},
year = {2024},
note = {v7.0.0}
note = {v7.1.0}
}
```

Expand All @@ -96,7 +96,7 @@ they are using rather than the combined SUNDIALS online guide:
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
title = {User Documentation for IDA},
year = {2024},
note = {v7.0.0}
note = {v7.1.0}
}
```

Expand All @@ -105,7 +105,7 @@ they are using rather than the combined SUNDIALS online guide:
author = {Radu Serban and Cosmin Petra and Alan C. Hindmarsh and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
title = {User Documentation for IDAS},
year = {2024},
note = {v6.0.0}
note = {v6.1.0}
}
```

Expand All @@ -114,6 +114,6 @@ they are using rather than the combined SUNDIALS online guide:
author = {Alan C. Hindmarsh and Radu Serban and Cody J. Balos and David J. Gardner and Daniel R. Reynolds and Carol S. Woodward},
title = {User Documentation for KINSOL},
year = {2024},
note = {v7.0.0}
note = {v7.1.0}
}
```
24 changes: 12 additions & 12 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ include(FindPackageHandleStandardArgs)
# Set some variables with info on the SUNDIALS project
set(PACKAGE_BUGREPORT "[email protected]")
set(PACKAGE_NAME "SUNDIALS")
set(PACKAGE_STRING "SUNDIALS 7.0.0")
set(PACKAGE_STRING "SUNDIALS 7.1.0")
set(PACKAGE_TARNAME "sundials")

# Set SUNDIALS version numbers
Expand All @@ -57,7 +57,7 @@ message(STATUS "SUNDIALS_GIT_VERSION: ${SUNDIALS_GIT_VERSION}")

# (use "" for the version label if none is needed)
set(PACKAGE_VERSION_MAJOR "7")
set(PACKAGE_VERSION_MINOR "0")
set(PACKAGE_VERSION_MINOR "1")
set(PACKAGE_VERSION_PATCH "0")
set(PACKAGE_VERSION_LABEL "")

Expand All @@ -73,37 +73,37 @@ endif()

# Specify the VERSION and SOVERSION for shared libraries

set(arkodelib_VERSION "6.0.0")
set(arkodelib_VERSION "6.1.0")
set(arkodelib_SOVERSION "6")

set(cvodelib_VERSION "7.0.0")
set(cvodelib_VERSION "7.1.0")
set(cvodelib_SOVERSION "7")

set(cvodeslib_VERSION "7.0.0")
set(cvodeslib_VERSION "7.1.0")
set(cvodeslib_SOVERSION "7")

set(idalib_VERSION "7.0.0")
set(idalib_VERSION "7.1.0")
set(idalib_SOVERSION "7")

set(idaslib_VERSION "6.0.0")
set(idaslib_VERSION "6.1.0")
set(idaslib_SOVERSION "6")

set(kinsollib_VERSION "7.0.0")
set(kinsollib_VERSION "7.1.0")
set(kinsollib_SOVERSION "7")

set(cpodeslib_VERSION "0.0.0")
set(cpodeslib_SOVERSION "0")

set(nveclib_VERSION "7.0.0")
set(nveclib_VERSION "7.1.0")
set(nveclib_SOVERSION "7")

set(sunmatrixlib_VERSION "5.0.0")
set(sunmatrixlib_VERSION "5.1.0")
set(sunmatrixlib_SOVERSION "5")

set(sunlinsollib_VERSION "5.0.0")
set(sunlinsollib_VERSION "5.1.0")
set(sunlinsollib_SOVERSION "5")

set(sunnonlinsollib_VERSION "4.0.0")
set(sunnonlinsollib_VERSION "4.1.0")
set(sunnonlinsollib_SOVERSION "4")

set(sundialslib_VERSION
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SUNDIALS: SUite of Nonlinear and DIfferential/ALgebraic equation Solvers #
### Version 7.0.0 (Feb 2024) ###
### Version 7.1.0 (Jun 2024) ###

**Center for Applied Scientific Computing, Lawrence Livermore National Laboratory**

Expand Down
4 changes: 2 additions & 2 deletions doc/arkode/guide/source/ARKodeButcherTable.rst
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ ARKodeButcherTable functions
* The name associated with *emethod*.
* ``NULL`` pointer if *emethod* was invalid.

.. versionadded:: x.y.z
.. versionadded:: 6.1.0

.. c:function:: ARKodeButcherTable ARKodeButcherTable_LoadDIRK(ARKODE_DIRKTableID imethod)

Expand Down Expand Up @@ -219,7 +219,7 @@ ARKodeButcherTable functions
* The name associated with *imethod*.
* ``NULL`` pointer if *imethod* was invalid.

.. versionadded:: x.y.z
.. versionadded:: 6.1.0


.. c:function:: ARKodeButcherTable ARKodeButcherTable_Alloc(int stages, sunbooleantype embedded)
Expand Down
2 changes: 1 addition & 1 deletion doc/arkode/guide/source/Introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ require a linear solver, ARKODE may use a variety of SUNLinearSolver modules
provided with SUNDIALS, or again may utilize a user-supplied module.


Changes to SUNDIALS in release X.Y.Z
Changes to SUNDIALS in release 6.1.0
====================================

.. include:: ../../../shared/RecentChanges.rst
Expand Down
30 changes: 15 additions & 15 deletions doc/arkode/guide/source/Usage/ARKStep/Relaxation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Enabling or Disabling Relaxation

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxFn` instead.

Expand Down Expand Up @@ -98,7 +98,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxEtaFail` instead.

Expand All @@ -124,7 +124,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxLowerBound` instead.

Expand All @@ -150,7 +150,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxUpperBound` instead.

Expand All @@ -174,7 +174,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxMaxFails` instead.

Expand Down Expand Up @@ -202,7 +202,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxMaxIters` instead.

Expand All @@ -223,7 +223,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxSolver` instead.

Expand Down Expand Up @@ -253,7 +253,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxResTol` instead.

Expand Down Expand Up @@ -284,7 +284,7 @@ relaxation.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeSetRelaxTol` instead.

Expand All @@ -309,7 +309,7 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxFnEvals` instead.

Expand All @@ -328,7 +328,7 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxJacEvals` instead.

Expand All @@ -352,7 +352,7 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxFails` instead.

Expand All @@ -372,7 +372,7 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxBoundFails` instead.

Expand All @@ -391,7 +391,7 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxSolveFails` instead.

Expand All @@ -410,6 +410,6 @@ about the performance of the relaxation method.

.. versionadded:: 5.6.0

.. deprecated:: x.y.z
.. deprecated:: 6.1.0

Use :c:func:`ARKodeGetNumRelaxSolveIters` instead.
Loading