Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:50

0001 /*
0002  [auto_generated]
0003  boost/numeric/odeint/algebra/operations_dispatcher.hpp
0004 
0005  [begin_description]
0006  Operations dispatcher to automatically chose suitable operations.
0007  [end_description]
0008 
0009  Copyright 2013 Karsten Ahnert
0010  Copyright 2013 Mario Mulansky
0011 
0012  Distributed under the Boost Software License, Version 1.0.
0013  (See accompanying file LICENSE_1_0.txt or
0014  copy at http://www.boost.org/LICENSE_1_0.txt)
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 // no further specializations required
0036 
0037 }
0038 }
0039 }
0040 
0041 #endif