Back to home page

EIC code displayed by LXR

 
 

    


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

0001 /*
0002  [auto_generated]
0003  boost/numeric/odeint/util/state_wrapper.hpp
0004 
0005  [begin_description]
0006  State wrapper for the state type in all stepper. The state wrappers are responsible for construction,
0007  destruction, copying construction, assignment and resizing.
0008  [end_description]
0009 
0010  Copyright 2011-2012 Mario Mulansky
0011  Copyright 2011-2013 Karsten Ahnert
0012 
0013  Distributed under the Boost Software License, Version 1.0.
0014  (See accompanying file LICENSE_1_0.txt or
0015  copy at http://www.boost.org/LICENSE_1_0.txt)
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 // BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED