]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/numeric/odeint/include/boost/numeric/odeint/external/nt2/nt2_algebra_dispatcher.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / numeric / odeint / include / boost / numeric / odeint / external / nt2 / nt2_algebra_dispatcher.hpp
CommitLineData
7c673cae
FG
1//==============================================================================
2// Copyright 2014 LRI UMR 8623 CNRS/Univ Paris Sud XI
3// Copyright 2014 NumScale SAS
4//
5// Distributed under the Boost Software License, Version 1.0.
6// See accompanying file LICENSE.txt or copy at
7// http://www.boost.org/LICENSE_1_0.txt
8//==============================================================================
9#ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
10#define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_ALGEBRA_DISPATCHER_HPP_INCLUDED
11
12#include <nt2/core/container/table/table.hpp>
13
14#include <boost/numeric/odeint/algebra/vector_space_algebra.hpp>
15#include <boost/numeric/odeint/algebra/algebra_dispatcher.hpp>
16
17namespace boost { namespace numeric { namespace odeint {
18template<typename T, typename S>
19struct algebra_dispatcher<nt2::container::table<T,S> >
20{
21 typedef vector_space_algebra algebra_type;
22};
23} } }
24
25#endif