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
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
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 }
0058 }
0059 }
0060 }
0061
0062
0063 #endif