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
0018 #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_BLAZE_BLAZE_ALGEBRA_DISPATCHER_HPP_INCLUDED
0019 #define BOOST_NUMERIC_ODEINT_EXTERNAL_BLAZE_BLAZE_ALGEBRA_DISPATCHER_HPP_INCLUDED
0020
0021 #include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
0022 #include <blaze/math/dense/StaticVector.h>
0023 #include <blaze/math/dense/DynamicVector.h>
0024
0025
0026
0027
0028
0029
0030 namespace boost {
0031 namespace numeric {
0032 namespace odeint {
0033
0034 template< typename T , size_t N , bool TF >
0035 struct algebra_dispatcher< blaze::StaticVector< T , N , TF > >
0036 {
0037 typedef vector_space_algebra algebra_type;
0038 };
0039
0040 template< typename T , bool TF >
0041 struct algebra_dispatcher< blaze::DynamicVector< T , TF > >
0042 {
0043 typedef vector_space_algebra algebra_type;
0044 };
0045
0046
0047
0048
0049
0050 }
0051 }
0052 }
0053
0054
0055 #endif