added runge_kutta_cash_karp54.hpp to odeint.hpp

This commit is contained in:
Karsten Ahnert 2011-08-14 14:03:54 +02:00
parent 8746e5f435
commit d405ae01d1
2 changed files with 2 additions and 1 deletions

View File

@ -23,6 +23,7 @@
#include <boost/numeric/odeint/stepper/euler.hpp>
#include <boost/numeric/odeint/stepper/runge_kutta4_classic.hpp>
#include <boost/numeric/odeint/stepper/runge_kutta4.hpp>
#include <boost/numeric/odeint/stepper/runge_kutta_cash_karp54.hpp>
#include <boost/numeric/odeint/stepper/runge_kutta_cash_karp54_classic.hpp>
#include <boost/numeric/odeint/stepper/runge_kutta_dopri5.hpp>

View File

@ -21,7 +21,7 @@ which gives the equations of motion:
The algorithmic implementation of this situation is described by a pair of callable objects for /f/ and /g/ with a specific parameter signature.
Such a system should be implemented as a std::pair of functions or a functors.
Symplectic systems are used in symplectic steppers like `symplectic_rkn_sb3a_mclachlan` [link odeint.concepts.symplectic_steppers].
Symplectic systems are used in symplectic steppers like `symplectic_rkn_sb3a_mclachlan`.
[heading Notation]