Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-01-09 09:55:59

0001 //==============================================================================
0002 //         Copyright 2014          LRI    UMR 8623 CNRS/Univ Paris Sud XI
0003 //         Copyright 2014          NumScale SAS
0004 //
0005 //          Distributed under the Boost Software License, Version 1.0.
0006 //                 See accompanying file LICENSE.txt or copy at
0007 //                     http://www.boost.org/LICENSE_1_0.txt
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