12345678910111213141516171819202122232425 |
- #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
- #define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
- #include <nt2/core/container/table/table.hpp>
- #include <boost/numeric/odeint/algebra/vector_space_algebra.hpp>
- #include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
- namespace boost { namespace numeric { namespace odeint {
- template<typename T, typename S>
- struct algebra_dispatcher<nt2::container::table<T,S> >
- {
- typedef vector_space_algebra algebra_type;
- };
- } } }
- #endif
|