annotate DEPENDENCIES/generic/include/boost/numeric/odeint/algebra/operations_dispatcher.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/algebra/operations_dispatcher.hpp
Chris@102 4
Chris@102 5 [begin_description]
Chris@102 6 Operations dispatcher to automatically chose suitable operations.
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 #ifndef BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
Chris@102 18 #define BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
Chris@102 19
Chris@102 20 #include <boost/numeric/odeint/algebra/default_operations.hpp>
Chris@102 21
Chris@102 22 namespace boost {
Chris@102 23 namespace numeric {
Chris@102 24 namespace odeint {
Chris@102 25
Chris@102 26 template< class StateType , class Enabler = void >
Chris@102 27 struct operations_dispatcher_sfinae
Chris@102 28 {
Chris@102 29 typedef default_operations operations_type;
Chris@102 30 };
Chris@102 31
Chris@102 32 template< class StateType >
Chris@102 33 struct operations_dispatcher : operations_dispatcher_sfinae< StateType > {};
Chris@102 34
Chris@102 35 // no further specializations required
Chris@102 36
Chris@102 37 }
Chris@102 38 }
Chris@102 39 }
Chris@102 40
Chris@102 41 #endif