File indexing completed on 2025-01-18 09:42:58
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019 #ifndef BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED
0020 #define BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED
0021
0022
0023 #include <boost/type_traits/integral_constant.hpp>
0024
0025 #include <boost/numeric/odeint/util/is_resizeable.hpp>
0026 #include <boost/numeric/odeint/util/resize.hpp>
0027 #include <boost/numeric/odeint/util/same_size.hpp>
0028
0029
0030 namespace boost {
0031 namespace numeric {
0032 namespace odeint {
0033
0034
0035 template< class V , class Enabler = void >
0036 struct state_wrapper
0037 {
0038 typedef state_wrapper< V > state_wrapper_type;
0039
0040 V m_v;
0041 };
0042
0043
0044 }
0045 }
0046 }
0047
0048
0049
0050 #endif