From d405ae01d1e47ff95e62fd043d258c4e19eefa85 Mon Sep 17 00:00:00 2001 From: Karsten Ahnert Date: Sun, 14 Aug 2011 14:03:54 +0200 Subject: [PATCH] added runge_kutta_cash_karp54.hpp to odeint.hpp --- boost/numeric/odeint.hpp | 1 + libs/numeric/odeint/doc/concepts/symplectic_system.qbk | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/boost/numeric/odeint.hpp b/boost/numeric/odeint.hpp index 67833c33..d492bd54 100644 --- a/boost/numeric/odeint.hpp +++ b/boost/numeric/odeint.hpp @@ -23,6 +23,7 @@ #include #include #include +#include #include #include diff --git a/libs/numeric/odeint/doc/concepts/symplectic_system.qbk b/libs/numeric/odeint/doc/concepts/symplectic_system.qbk index ed795b64..89321a7d 100644 --- a/libs/numeric/odeint/doc/concepts/symplectic_system.qbk +++ b/libs/numeric/odeint/doc/concepts/symplectic_system.qbk @@ -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]