File indexing completed on 2025-01-18 09:42:50
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
0018 #define BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
0019
0020 #include <boost/numeric/odeint/algebra/default_operations.hpp>
0021
0022 namespace boost {
0023 namespace numeric {
0024 namespace odeint {
0025
0026 template< class StateType , class Enabler = void >
0027 struct operations_dispatcher_sfinae
0028 {
0029 typedef default_operations operations_type;
0030 };
0031
0032 template< class StateType >
0033 struct operations_dispatcher : operations_dispatcher_sfinae< StateType > {};
0034
0035
0036
0037 }
0038 }
0039 }
0040
0041 #endif