/* [auto_generated] boost/numeric/odeint/external/vexcl/vexcl_copy.hpp [begin_description] copy_impl specializations for vexcl [end_description] Copyright 2009-2011 Karsten Ahnert Copyright 2009-2011 Mario Mulansky Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_NUMERIC_ODEINT_EXTERNAL_VEXCL_VEXCL_COPY_HPP_INCLUDED #define BOOST_NUMERIC_ODEINT_EXTERNAL_VEXCL_VEXCL_COPY_HPP_INCLUDED #include #include #include namespace boost { namespace numeric { namespace odeint { template< typename T1, typename T2 > struct copy_impl< vex::vector, vex::vector > { static void copy( const vex::vector &from , vex::vector &to ) { to = from; } }; template< typename T1, typename T2, size_t N > struct copy_impl< vex::multivector, vex::multivector > { static void copy( const vex::multivector &from , vex::multivector &to ) { to = from; } }; } // namespace odeint } // namespace numeric } // namespace boost #endif // BOOST_NUMERIC_ODEINT_EXTERNAL_VEXCL_VEXCL_COPY_HPP_INCLUDED