1#ifndef TATOOINE_ODE_BOOST_RUNGEKUTTAFEHLBERG78_H
2#define TATOOINE_ODE_BOOST_RUNGEKUTTAFEHLBERG78_H
8#include <boost/numeric/odeint/stepper/controlled_runge_kutta.hpp>
9#include <boost/numeric/odeint/stepper/runge_kutta_fehlberg78.hpp>
13template <
floating_po
int Real, std::
size_t N>
16 ::boost::numeric::odeint::runge_kutta_fehlberg78<vec<Real, N>>;
19 typename stepper_type::operations_type>;
21 ::boost::numeric::odeint::controlled_runge_kutta<
stepper_type,
25template <
floating_po
int Real, std::
size_t N>
28 Real, N, typename rkf78_aux<Real, N>::controller_type> {
32 Real
const relative_error_tolerance = 1e-10,
33 Real
const initial_stepsize = 1e-6, Real
const a_x = 1,
34 Real
const a_dxdt = 1)
37 relative_error_tolerance, a_x,
Definition: domain_error_checker.h:11
Definition: controller_runge_kutta_with_domain_check.h:19
Definition: algorithm.h:6
Definition: rungekuttafehlberg78.h:14
::boost::numeric::odeint::controlled_runge_kutta< stepper_type, error_checker_type > controller_type
Definition: rungekuttafehlberg78.h:22
::boost::numeric::odeint::runge_kutta_fehlberg78< vec< Real, N > > stepper_type
Definition: rungekuttafehlberg78.h:16
Definition: rungekuttafehlberg78.h:28
rungekuttafehlberg78(Real const absolute_error_tolerance=1e-10, Real const relative_error_tolerance=1e-10, Real const initial_stepsize=1e-6, Real const a_x=1, Real const a_dxdt=1)
Definition: rungekuttafehlberg78.h:31
typename rkf78_aux< Real, N >::error_checker_type error_checker_type
Definition: rungekuttafehlberg78.h:30
typename rkf78_aux< Real, N >::controller_type controller_type
Definition: rungekuttafehlberg78.h:29