1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #ifndef BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_ALGEBRA_OPERATIONS_DISPATCHER_HPP_INCLUDED
- #include <boost/numeric/odeint/algebra/default_operations.hpp>
- namespace boost {
- namespace numeric {
- namespace odeint {
-
- template< class StateType , class Enabler = void >
- struct operations_dispatcher_sfinae
- {
- typedef default_operations operations_type;
- };
- template< class StateType >
- struct operations_dispatcher : operations_dispatcher_sfinae< StateType > {};
- }
- }
- }
- #endif
|