Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/boost/numeric/odeint/util/stepper_traits.hpp was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002   [auto_generated]
0003   boost/numeric/odeint/util/stepper_traits.hpp
0004 
0005   [begin_description]
0006   tba.
0007   [end_description]
0008 
0009   Copyright 2013 Karsten Ahnert
0010   Copyright 2013 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_UTIL_STEPPER_TRAITS_HPP_DEFINED
0019 #define BOOST_NUMERIC_ODEINT_UTIL_STEPPER_TRAITS_HPP_DEFINED
0020 
0021 #include <boost/numeric/odeint/util/unwrap_reference.hpp>
0022 
0023 
0024 namespace boost {
0025 namespace numeric {
0026 namespace odeint {
0027 namespace traits {
0028 
0029 template< class Stepper >
0030 struct state_type
0031 {
0032     typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type;
0033     typedef typename stepper_type::state_type type;
0034 };
0035 
0036 template< class Stepper >
0037 struct time_type
0038 {
0039     typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type;
0040     typedef typename stepper_type::time_type type;
0041 };
0042 
0043 template< class Stepper >
0044 struct stepper_category
0045 {
0046     typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type;
0047     typedef typename stepper_type::stepper_category type;
0048 };
0049 
0050 template< class Stepper >
0051 struct value_type
0052 {
0053     typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type;
0054     typedef typename stepper_type::value_type type;
0055 };
0056 
0057 } // namespace traits
0058 } // namespace odeint
0059 } // namespace numeric
0060 } // namespace boost
0061 
0062 
0063 #endif // BOOST_NUMERIC_ODEINT_UTIL_STEPPER_TRAITS_HPP_DEFINED