Chris@102: //============================================================================== Chris@102: // Copyright 2014 LASMEA UMR 6602 CNRS/Univ. Clermont II Chris@102: // Copyright 2014 LRI UMR 8623 CNRS/Univ Paris Sud XI Chris@102: // Copyright 2014 MetaScale SAS Chris@102: // Chris@102: // Distributed under the Boost Software License, Version 1.0. Chris@102: // See accompanying file LICENSE.txt or copy at Chris@102: // http://www.boost.org/LICENSE_1_0.txt Chris@102: //============================================================================== Chris@102: #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED Chris@102: #define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED Chris@102: Chris@102: #include Chris@102: Chris@102: #include Chris@102: Chris@102: namespace boost { namespace numeric { namespace odeint { Chris@102: Chris@102: template Chris@102: struct copy_impl< nt2::container::table Chris@102: , nt2::container::table Chris@102: > Chris@102: { Chris@102: static void copy ( const nt2::container::table &v1 Chris@102: , nt2::container::table &v2 Chris@102: ) Chris@102: { Chris@102: v2 = v1; Chris@102: } Chris@102: }; Chris@102: } } } Chris@102: Chris@102: #endif