/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/controlled_step_result.hpp (1092B)
/* [auto_generated] boost/numeric/odeint/stepper/controlled_step_result.hpp [begin_description] Defines the result type for all controlled stepper. [end_description] Copyright 2011-2013 Karsten Ahnert Copyright 2012 Mario Mulansky 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_CONTROLLED_STEP_RESULT_HPP_INCLUDED #define BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED namespace boost { namespace numeric { namespace odeint { /** * \enum controlled_step_result * * \brief Enum representing the return values of the controlled steppers. */ typedef enum { success , /**< The trial step was successful, hence the state and the time have been advanced. */ fail /**< The step was not successful and might possibly be repeated with a small step size. */ } controlled_step_result; } // namespace odeint } // numeric } // boost #endif // BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED