File indexing completed on 2026-01-09 09:55:59
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
0010 #define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
0011
0012 #include <nt2/core/container/table/table.hpp>
0013
0014 #include <boost/numeric/odeint/algebra/vector_space_algebra.hpp>
0015 #include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
0016
0017 namespace boost { namespace numeric { namespace odeint {
0018 template<typename T, typename S>
0019 struct algebra_dispatcher<nt2::container::table<T,S> >
0020 {
0021 typedef vector_space_algebra algebra_type;
0022 };
0023 } } }
0024
0025 #endif