Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:51

0001 //==============================================================================
0002 //         Copyright 2014          LASMEA UMR 6602 CNRS/Univ. Clermont II
0003 //         Copyright 2014          LRI    UMR 8623 CNRS/Univ Paris Sud XI
0004 //         Copyright 2014          MetaScale SAS
0005 //
0006 //          Distributed under the Boost Software License, Version 1.0.
0007 //                 See accompanying file LICENSE.txt or copy at
0008 //                     http://www.boost.org/LICENSE_1_0.txt
0009 //==============================================================================
0010 #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED
0011 #define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED
0012 
0013 #include <nt2/core/container/table/table.hpp>
0014 
0015 #include <boost/numeric/odeint/util/copy.hpp>
0016 
0017 namespace boost { namespace numeric { namespace odeint {
0018 
0019 template<typename T, typename S>
0020 struct copy_impl< nt2::container::table<T,S>
0021                 , nt2::container::table<T,S>
0022                 >
0023 {
0024   static void copy ( const nt2::container::table<T,S> &v1
0025                    , nt2::container::table<T,S> &v2
0026                    )
0027   {
0028     v2 = v1;
0029   }
0030 };
0031 } } }
0032 
0033 #endif