1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_COMPUTE_COMPUTE_OPERATIONS_DISPATCHER_HPP_DEFINED
- #define BOOST_NUMERIC_ODEINT_EXTERNAL_COMPUTE_COMPUTE_OPERATIONS_DISPATCHER_HPP_DEFINED
- #include <boost/compute/container/vector.hpp>
- #include <boost/numeric/odeint/external/compute/compute_operations.hpp>
- #include <boost/numeric/odeint/algebra/operations_dispatcher.hpp>
- namespace boost {
- namespace numeric {
- namespace odeint {
- template< class T , class A >
- struct operations_dispatcher< boost::compute::vector< T , A > >
- {
- typedef compute_operations operations_type;
- };
- }
- }
- }
- #endif
|