Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:56

0001 /*
0002  [auto_generated]
0003  boost/numeric/odeint/stepper/controlled_step_result.hpp
0004 
0005  [begin_description]
0006  Defines the result type for all controlled stepper.
0007  [end_description]
0008 
0009  Copyright 2011-2013 Karsten Ahnert
0010  Copyright 2012 Mario Mulansky
0011 
0012  Distributed under the Boost Software License, Version 1.0.
0013  (See accompanying file LICENSE_1_0.txt or
0014  copy at http://www.boost.org/LICENSE_1_0.txt)
0015  */
0016 
0017 
0018 #ifndef BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED
0019 #define BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED
0020 
0021 
0022 namespace boost {
0023 namespace numeric {
0024 namespace odeint {
0025 
0026 /**
0027  * \enum controlled_step_result
0028  *
0029  * \brief Enum representing the return values of the controlled steppers.
0030  */
0031 typedef enum
0032 {
0033     success , /**< The trial step was successful, hence the state and the time have been advanced. */
0034     fail      /**< The step was not successful and might possibly be repeated with a small step size. */
0035 } controlled_step_result;
0036 
0037 } // namespace odeint
0038 } // numeric
0039 } // boost
0040 
0041 
0042 #endif // BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED