File indexing completed on 2025-01-18 09:42:58
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019 #ifndef BOOST_NUMERIC_ODEINT_UTIL_SPLIT_HPP_INCLUDED
0020 #define BOOST_NUMERIC_ODEINT_UTIL_SPLIT_HPP_INCLUDED
0021
0022 namespace boost {
0023 namespace numeric {
0024 namespace odeint {
0025
0026
0027
0028
0029 template< class Container1, class Container2 , class Enabler = void >
0030 struct split_impl
0031 {
0032 static void split( const Container1 &from , Container2 &to );
0033 };
0034
0035 template< class Container1 , class Container2 >
0036 void split( const Container1 &from , Container2 &to )
0037 {
0038 split_impl< Container1 , Container2 >::split( from , to );
0039 }
0040
0041
0042
0043
0044
0045 template< class Container1, class Container2 , class Enabler = void >
0046 struct unsplit_impl
0047 {
0048 static void unsplit( const Container1 &from , Container2 &to );
0049 };
0050
0051 template< class Container1 , class Container2 >
0052 void unsplit( const Container1 &from , Container2 &to )
0053 {
0054 unsplit_impl< Container1 , Container2 >::unsplit( from , to );
0055 }
0056
0057
0058 }
0059 }
0060 }
0061
0062
0063 #endif
0064