Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/numeric/odeint/util/state_wrapper.hpp @ 133:4acb5d8d80b6 tip
Don't fail environmental check if README.md exists (but .txt and no-suffix don't)
author | Chris Cannam |
---|---|
date | Tue, 30 Jul 2019 12:25:44 +0100 |
parents | c530137014c0 |
children |
rev | line source |
---|---|
Chris@16 | 1 /* |
Chris@16 | 2 [auto_generated] |
Chris@16 | 3 boost/numeric/odeint/util/state_wrapper.hpp |
Chris@16 | 4 |
Chris@16 | 5 [begin_description] |
Chris@16 | 6 State wrapper for the state type in all stepper. The state wrappers are responsible for construction, |
Chris@16 | 7 destruction, copying construction, assignment and resizing. |
Chris@16 | 8 [end_description] |
Chris@16 | 9 |
Chris@101 | 10 Copyright 2011-2012 Mario Mulansky |
Chris@101 | 11 Copyright 2011-2013 Karsten Ahnert |
Chris@16 | 12 |
Chris@16 | 13 Distributed under the Boost Software License, Version 1.0. |
Chris@16 | 14 (See accompanying file LICENSE_1_0.txt or |
Chris@16 | 15 copy at http://www.boost.org/LICENSE_1_0.txt) |
Chris@16 | 16 */ |
Chris@16 | 17 |
Chris@16 | 18 |
Chris@16 | 19 #ifndef BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED |
Chris@16 | 20 #define BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED |
Chris@16 | 21 |
Chris@16 | 22 |
Chris@16 | 23 #include <boost/type_traits/integral_constant.hpp> |
Chris@16 | 24 |
Chris@16 | 25 #include <boost/numeric/odeint/util/is_resizeable.hpp> |
Chris@16 | 26 #include <boost/numeric/odeint/util/resize.hpp> |
Chris@16 | 27 #include <boost/numeric/odeint/util/same_size.hpp> |
Chris@16 | 28 |
Chris@16 | 29 |
Chris@16 | 30 namespace boost { |
Chris@16 | 31 namespace numeric { |
Chris@16 | 32 namespace odeint { |
Chris@16 | 33 |
Chris@16 | 34 |
Chris@16 | 35 template< class V , class Enabler = void > |
Chris@16 | 36 struct state_wrapper |
Chris@16 | 37 { |
Chris@16 | 38 typedef state_wrapper< V > state_wrapper_type; |
Chris@16 | 39 |
Chris@16 | 40 V m_v; |
Chris@16 | 41 }; |
Chris@16 | 42 |
Chris@16 | 43 |
Chris@16 | 44 } |
Chris@16 | 45 } |
Chris@16 | 46 } |
Chris@16 | 47 |
Chris@16 | 48 |
Chris@16 | 49 |
Chris@16 | 50 #endif // BOOST_NUMERIC_ODEINT_UTIL_STATE_WRAPPER_HPP_INCLUDED |