Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/numeric/odeint/util/stepper_traits.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 | f46d142149f5 |
children |
rev | line source |
---|---|
Chris@102 | 1 /* |
Chris@102 | 2 [auto_generated] |
Chris@102 | 3 boost/numeric/odeint/util/stepper_traits.hpp |
Chris@102 | 4 |
Chris@102 | 5 [begin_description] |
Chris@102 | 6 tba. |
Chris@102 | 7 [end_description] |
Chris@102 | 8 |
Chris@102 | 9 Copyright 2013 Karsten Ahnert |
Chris@102 | 10 Copyright 2013 Mario Mulansky |
Chris@102 | 11 |
Chris@102 | 12 Distributed under the Boost Software License, Version 1.0. |
Chris@102 | 13 (See accompanying file LICENSE_1_0.txt or |
Chris@102 | 14 copy at http://www.boost.org/LICENSE_1_0.txt) |
Chris@102 | 15 */ |
Chris@102 | 16 |
Chris@102 | 17 |
Chris@102 | 18 #ifndef BOOST_NUMERIC_ODEINT_UTIL_STEPPER_TRAITS_HPP_DEFINED |
Chris@102 | 19 #define BOOST_NUMERIC_ODEINT_UTIL_STEPPER_TRAITS_HPP_DEFINED |
Chris@102 | 20 |
Chris@102 | 21 #include <boost/numeric/odeint/util/unwrap_reference.hpp> |
Chris@102 | 22 |
Chris@102 | 23 |
Chris@102 | 24 namespace boost { |
Chris@102 | 25 namespace numeric { |
Chris@102 | 26 namespace odeint { |
Chris@102 | 27 namespace traits { |
Chris@102 | 28 |
Chris@102 | 29 template< class Stepper > |
Chris@102 | 30 struct state_type |
Chris@102 | 31 { |
Chris@102 | 32 typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type; |
Chris@102 | 33 typedef typename stepper_type::state_type type; |
Chris@102 | 34 }; |
Chris@102 | 35 |
Chris@102 | 36 template< class Stepper > |
Chris@102 | 37 struct time_type |
Chris@102 | 38 { |
Chris@102 | 39 typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type; |
Chris@102 | 40 typedef typename stepper_type::time_type type; |
Chris@102 | 41 }; |
Chris@102 | 42 |
Chris@102 | 43 template< class Stepper > |
Chris@102 | 44 struct stepper_category |
Chris@102 | 45 { |
Chris@102 | 46 typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type; |
Chris@102 | 47 typedef typename stepper_type::stepper_category type; |
Chris@102 | 48 }; |
Chris@102 | 49 |
Chris@102 | 50 template< class Stepper > |
Chris@102 | 51 struct value_type |
Chris@102 | 52 { |
Chris@102 | 53 typedef typename boost::numeric::odeint::unwrap_reference< Stepper >::type stepper_type; |
Chris@102 | 54 typedef typename stepper_type::value_type type; |
Chris@102 | 55 }; |
Chris@102 | 56 |
Chris@102 | 57 } // namespace traits |
Chris@102 | 58 } // namespace odeint |
Chris@102 | 59 } // namespace numeric |
Chris@102 | 60 } // namespace boost |
Chris@102 | 61 |
Chris@102 | 62 |
Chris@102 | 63 #endif // BOOST_NUMERIC_ODEINT_UTIL_STEPPER_TRAITS_HPP_DEFINED |