2
0
mirror of https://github.com/boostorg/odeint.git synced 2026-01-25 06:22:11 +00:00

Merge branch 'master' of github.com:headmyshoulder/odeint-v2

This commit is contained in:
mariomulansky
2013-06-24 11:35:53 -05:00

View File

@@ -63,7 +63,7 @@ struct thrust_algebra
template< class StateType , class Operation >
static void for_each1( StateType &s , Operation op )
{
thrust::for_each( boost::begin(s) , boost::begin(s) , op );
thrust::for_each( boost::begin(s) , boost::end(s) , op );
}
template< class StateType1 , class StateType2 , class Operation >