Chris@16: /* Chris@16: [auto_generated] Chris@16: boost/numeric/odeint/stepper/controlled_step_result.hpp Chris@16: Chris@16: [begin_description] Chris@16: Defines the result type for all controlled stepper. Chris@16: [end_description] Chris@16: Chris@101: Copyright 2011-2013 Karsten Ahnert Chris@101: Copyright 2012 Mario Mulansky Chris@16: Chris@16: Distributed under the Boost Software License, Version 1.0. Chris@16: (See accompanying file LICENSE_1_0.txt or Chris@16: copy at http://www.boost.org/LICENSE_1_0.txt) Chris@16: */ Chris@16: Chris@16: Chris@16: #ifndef BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED Chris@16: #define BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED Chris@16: Chris@16: Chris@16: namespace boost { Chris@16: namespace numeric { Chris@16: namespace odeint { Chris@16: Chris@16: /** Chris@16: * \enum controlled_step_result Chris@16: * Chris@16: * \brief Enum representing the return values of the controlled steppers. Chris@16: */ Chris@16: typedef enum Chris@16: { Chris@16: success , /**< The trial step was successful, hence the state and the time have been advanced. */ Chris@16: fail /**< The step was not successful and might possibly be repeated with a small step size. */ Chris@16: } controlled_step_result; Chris@16: Chris@16: } // namespace odeint Chris@16: } // numeric Chris@16: } // boost Chris@16: Chris@16: Chris@16: #endif // BOOST_NUMERIC_ODEINT_STEPPER_CONTROLLED_STEP_RESULT_HPP_INCLUDED