diff --git a/docs/src/solvers/ode_solve.md b/docs/src/solvers/ode_solve.md index 91a9847e44..b3f47f0a7e 100644 --- a/docs/src/solvers/ode_solve.md +++ b/docs/src/solvers/ode_solve.md @@ -79,9 +79,10 @@ and thus are recommended for stiff problems on non-Float64 numbers. - `Euler`- The canonical forward Euler method. - `Midpoint` - The second order midpoint method. - - `SSPRK22` - The two-stage, second order strong stability preserving method of Shu and Osher. - - `SSPRK33` - The three-stage, third order strong stability preserving method of Shu and Osher. - - `SSPRK104` - The ten-stage, fourth order strong stability preserving method of Ketcheson. + - `SSPRK22` - The two-stage, second order strong stability preserving (SSP) method of Shu and Osher. (free 2nd order SSP interpolant) + - `SSPRK33` - The three-stage, third order strong stability preserving (SSP) method of Shu and Osher. (free 2nd order SSP interpolant) + - `SSPRK432` - A 3/2 adaptive strong stability preserving (SSP) method with five stages. (free 2nd order SSP interpolant) + - `SSPRK104` - The ten-stage, fourth order strong stability preserving method of Ketcheson. (free 3rd order Hermite interpolant) - `RK4` - The canonical Runge-Kutta Order 4 method. - `BS3` - Bogacki-Shampine 3/2 method. - `DP5` - Dormand-Prince's 5/4 Runge-Kutta method. (free 4th order interpolant)