5th order Adams predictor-corrector method for solving an IVP.
3rd order Adams predictor-corrector method for solving an IVP.
Provides an IVPSolver implementation for AdamsSolver, based on
the predictor and correctorr coefficients. It is up to the AdamsSolver
to set up AdamsInfo with the correct coefficients.
2nd order backwards differentiation formula method for
solving an initial value problem.
6th order backwards differentiation formula method for
solving an initial value problem.
Provides an IVPSolver implementation for BDFSolver, based
on the higher and lower order coefficients. It is up to the
BDFSolver to correctly implement the coefficients.
Euler solver for an IVP.
Bogacki-Shampine method for solving an IVP.
Runge-Kutta-Fehlberg method for solving an IVP.
Provides an IVPSolver implementation for RungeKuttaSolver,
based entirely on the Butch Tableaux coefficients. It is up
to the RungeKuttaSolver to set up RKInfo. See RK45 for an example.