/usr/include/boost/numeric/odeint/stepper
NameSizeModeActions
base/-0755rm
detail/-0755rm
generation/-0755rm
adams_bashforth.hpp152640644editdlrm
adams_bashforth_moulton.hpp120150644editdlrm
adams_moulton.hpp61120644editdlrm
adaptive_adams_bashforth_moulton.hpp83110644editdlrm
bulirsch_stoer.hpp261890644editdlrm
bulirsch_stoer_dense_out.hpp338590644editdlrm
controlled_adams_bashforth_moulton.hpp100800644editdlrm
controlled_runge_kutta.hpp383010644editdlrm
controlled_step_result.hpp10920644editdlrm
dense_output_runge_kutta.hpp145900644editdlrm
euler.hpp65870644editdlrm
explicit_error_generic_rk.hpp107080644editdlrm
explicit_generic_rk.hpp84910644editdlrm
extrapolation_stepper.hpp111550644editdlrm
generation.hpp14770644editdlrm
implicit_euler.hpp52360644editdlrm
modified_midpoint.hpp105660644editdlrm
rosenbrock4.hpp146020644editdlrm
rosenbrock4_controller.hpp72900644editdlrm
rosenbrock4_dense_output.hpp55950644editdlrm
runge_kutta4.hpp58600644editdlrm
runge_kutta4_classic.hpp92550644editdlrm
runge_kutta_cash_karp54.hpp86760644editdlrm
runge_kutta_cash_karp54_classic.hpp143180644editdlrm
runge_kutta_dopri5.hpp214840644editdlrm
runge_kutta_fehlberg78.hpp150050644editdlrm
stepper_categories.hpp21620644editdlrm
symplectic_euler.hpp39370644editdlrm
symplectic_rkn_sb3a_m4_mclachlan.hpp51200644editdlrm
symplectic_rkn_sb3a_mclachlan.hpp53890644editdlrm
velocity_verlet.hpp135440644editdlrm
Edit: /usr/include/boost/numeric/odeint/stepper/stepper_categories.hpp (2162B)
/* [auto_generated] boost/numeric/odeint/stepper/stepper_categories.hpp [begin_description] Definition of all stepper categories. [end_description] Copyright 2010-2011 Mario Mulansky Copyright 2010-2012 Karsten Ahnert Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_NUMERIC_ODEINT_STEPPER_STEPPER_CATEGORIES_HPP_INCLUDED #define BOOST_NUMERIC_ODEINT_STEPPER_STEPPER_CATEGORIES_HPP_INCLUDED #include namespace boost { namespace numeric { namespace odeint { /* * Tags to specify stepper types * * These tags are used by integrate() to choose which integration method is used */ struct stepper_tag {}; // struct explicit_stepper_tag : stepper_tag {}; // struct implicit_stepper_tag : stepper_tag {}; struct error_stepper_tag : stepper_tag {}; struct explicit_error_stepper_tag : error_stepper_tag {}; struct explicit_error_stepper_fsal_tag : error_stepper_tag {}; struct controlled_stepper_tag {}; struct explicit_controlled_stepper_tag : controlled_stepper_tag {}; struct explicit_controlled_stepper_fsal_tag : controlled_stepper_tag {}; struct dense_output_stepper_tag {}; template< class tag > struct base_tag ; template< > struct base_tag< stepper_tag > { typedef stepper_tag type; }; template< > struct base_tag< error_stepper_tag > { typedef stepper_tag type; }; template< > struct base_tag< explicit_error_stepper_tag > { typedef stepper_tag type; }; template< > struct base_tag< explicit_error_stepper_fsal_tag > { typedef stepper_tag type; }; template< > struct base_tag< controlled_stepper_tag > { typedef controlled_stepper_tag type; }; template< > struct base_tag< explicit_controlled_stepper_tag > { typedef controlled_stepper_tag type; }; template< > struct base_tag< explicit_controlled_stepper_fsal_tag > { typedef controlled_stepper_tag type; }; template< > struct base_tag< dense_output_stepper_tag > { typedef dense_output_stepper_tag type; }; } // odeint } // numeric } // boost #endif // BOOST_NUMERIC_ODEINT_STEPPER_STEPPER_CATEGORIES_HPP_INCLUDED