/usr/include/boost/numeric/odeint/external/nt2
NameSizeModeActions
nt2_algebra_dispatcher.hpp10240644editdlrm
nt2_copy.hpp11500644editdlrm
nt2_norm_inf.hpp11480644editdlrm
nt2_resize.hpp16380644editdlrm
Edit: /usr/include/boost/numeric/odeint/external/nt2/nt2_copy.hpp (1150B)
//============================================================================== // Copyright 2014 LASMEA UMR 6602 CNRS/Univ. Clermont II // Copyright 2014 LRI UMR 8623 CNRS/Univ Paris Sud XI // Copyright 2014 MetaScale SAS // // Distributed under the Boost Software License, Version 1.0. // See accompanying file LICENSE.txt or copy at // http://www.boost.org/LICENSE_1_0.txt //============================================================================== #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED #define BOOST_NUMERIC_ODEINT_EXTERNAL_NT2_NT2_COPY_HPP_INCLUDED #include #include namespace boost { namespace numeric { namespace odeint { template struct copy_impl< nt2::container::table , nt2::container::table > { static void copy ( const nt2::container::table &v1 , nt2::container::table &v2 ) { v2 = v1; } }; } } } #endif