/third_party/boost/libs/numeric/odeint/examples/2d_lattice/ |
D | nested_range_algebra.hpp | 19 …void for_each3( Iterator1 first1 , Iterator1 last1 , Iterator2 first2 , Iterator3 first3, Operatio… in for_each3() function 22 algebra.for_each3( *first1++ , *first2++ , *first3++ , op ); in for_each3() 36 void for_each3( S1 &s1 , S2 &s2 , S3 &s3 , Op op ) in for_each3() function 38 …detail::for_each3( boost::begin( s1 ) , boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 )… in for_each3()
|
/third_party/boost/boost/numeric/odeint/stepper/base/ |
D | symplectic_rkn_stepper_base.hpp | 218 this->m_algebra.for_each3( coor_out , coor_in , m_dqdt.m_v , in do_step_impl() 221 this->m_algebra.for_each3( momentum_out , momentum_in , m_dpdt.m_v , in do_step_impl() 227 this->m_algebra.for_each3( coor_out , coor_out , m_dqdt.m_v , in do_step_impl() 230 this->m_algebra.for_each3( momentum_out , momentum_out , m_dpdt.m_v , in do_step_impl() 267 this->m_algebra.for_each3( coor_out , coor_in , momentum_in , in do_step_impl() 270 this->m_algebra.for_each3( momentum_out , momentum_in , m_dpdt.m_v , in do_step_impl() 275 this->m_algebra.for_each3( coor_out , coor_out , momentum_out , in do_step_impl() 278 this->m_algebra.for_each3( momentum_out , momentum_out , m_dpdt.m_v , in do_step_impl()
|
/third_party/boost/boost/numeric/odeint/stepper/ |
D | runge_kutta4_classic.hpp | 103 stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , dxdt , in do_step_impl() 111 stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , m_dxt.m_v , in do_step_impl() 118 stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , m_dxm.m_v , in do_step_impl()
|
D | extrapolation_stepper.hpp | 150 stepper_base_type::m_algebra.for_each3( in do_step_impl() 165 stepper_base_type::m_algebra.for_each3( in do_step_impl_io() 251 stepper_base_type::m_algebra.for_each3( in extrapolate() 257 stepper_base_type::m_algebra.for_each3( in extrapolate()
|
D | modified_midpoint.hpp | 94 stepper_base_type::m_algebra.for_each3( m_x1.m_v , in , dxdt , in do_step_impl() 106 stepper_base_type::m_algebra.for_each3( m_x1.m_v , m_x0.m_v , m_dxdt.m_v , in do_step_impl() 217 m_algebra.for_each3( m_x1.m_v , in , dxdt , in do_step() 233 m_algebra.for_each3( m_x1.m_v , m_x0.m_v , derivs[i-1].m_v , in do_step()
|
D | bulirsch_stoer_dense_out.hpp | 197 m_algebra.for_each3( m_err.m_v , out , m_table[0].m_v , in try_step() 408 m_algebra.for_each3( table[j-1].m_v , table[j].m_v , table[j-1].m_v , in extrapolate() 412 m_algebra.for_each3( xest , table[0].m_v , xest , in extrapolate() 426 m_algebra.for_each3( table[j-1].m_v , table[j].m_v , table[j-1].m_v , in extrapolate_dense_out() 430 m_algebra.for_each3( table[0].m_v , table[1].m_v , table[0].m_v , in extrapolate_dense_out() 562 …m_algebra.for_each3( m_diffs[kappa][j_diffs].m_v , m_diffs[kappa][j_diffs].m_v , m_derivs[j][i].m_… in calculate_finite_difference() 568 … m_algebra.for_each3( m_diffs[kappa][j_diffs].m_v , m_diffs[kappa][j_diffs].m_v , dxdt , in calculate_finite_difference() 591 m_algebra.for_each3( out , out , m_diffs[i][0].m_v , in do_interpolation()
|
D | euler.hpp | 81 stepper_base_type::m_algebra.for_each3( out , in , dxdt , in do_step_impl() 90 stepper_base_type::m_algebra.for_each3( x , old_state , stepper_base_type::m_dxdt.m_v , in calc_state()
|
D | adaptive_adams_bashforth_moulton.hpp | 184 this->m_algebra.for_each3(out, out, m_coeff.phi[1][i].m_v, in do_step_impl() 191 this->m_algebra.for_each3(out, out, m_coeff.phi[0][eO].m_v, in do_step_impl()
|
D | bulirsch_stoer.hpp | 233 m_algebra.for_each3( m_err.m_v , out , m_table[0].m_v , in try_step() 406 m_algebra.for_each3( table[j-1].m_v , table[j].m_v , table[j-1].m_v , in extrapolate() 409 m_algebra.for_each3( xest , table[0].m_v , xest , in extrapolate()
|
D | runge_kutta_cash_karp54_classic.hpp | 151 stepper_base_type::m_algebra.for_each3( m_x_tmp.m_v , in , dxdt , in do_step_impl()
|
/third_party/boost/libs/numeric/odeint/test/ |
D | range_algebra.cpp | 63 BOOST_AUTO_TEST_CASE_TEMPLATE( for_each3 , algebra_type , algebra_types ) in BOOST_AUTO_TEST_CASE_TEMPLATE() argument 67 algebra.for_each3( x1 , x2 , x3 , default_operations::scale_sum2<>( 1.0 , 2.0 ) ); in BOOST_AUTO_TEST_CASE_TEMPLATE()
|
D | fusion_algebra.cpp | 112 BOOST_AUTO_TEST_CASE( for_each3 ) in BOOST_AUTO_TEST_CASE() argument 115 algebra.for_each3( f.res , f.x , f.k1 , in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/boost/numeric/odeint/algebra/ |
D | multi_array_algebra.hpp | 50 static void for_each3( S1 &s1 , S2 &s2 , S3 &s3 , Op op ) in for_each3() function 52 detail::for_each3( s1.data() , s1.data() + s1.num_elements() , s2.data() , s3.data() , op ); in for_each3()
|
D | range_algebra.hpp | 51 static void for_each3( S1 &s1 , S2 &s2 , S3 &s3 , Op op ) in for_each3() function 53 …detail::for_each3( boost::begin( s1 ) , boost::end( s1 ) , boost::begin( s2 ) , boost::begin( s3 )… in for_each3()
|
D | array_algebra.hpp | 56 static void for_each3( Array< T , dim > &s1 , in for_each3() function 67 static void for_each3( Array< T , dim > &s1 , in for_each3() function
|
D | vector_space_algebra.hpp | 87 static void for_each3( S1 &s1 , S2 &s2 , S3 &s3 , Op op ) in for_each3() function
|
/third_party/boost/boost/numeric/odeint/stepper/detail/ |
D | pid_step_adjuster.hpp | 137 m_algebra.for_each3( err , x , dxdt , in adjust_stepsize()
|
D | generic_rk_call_algebra.hpp | 38 algebra.for_each3( s1 , s2 , s3 , op ); in operator ()() 60 algebra.for_each3( s1 , s2 , s4_array[0].m_v , op ); in operator ()()
|
D | adaptive_adams_coefficients.hpp | 143 this->m_algebra.for_each3(phi[o][i].m_v, phi[o][i-1].m_v, phi[o+1][i-1].m_v, in do_step()
|
D | adams_bashforth_call_algebra.hpp | 39 …algebra.for_each3( out , in , steps[0].m_v , typename Operations::template scale_sum2< value_type … in operator ()()
|
D | adams_moulton_call_algebra.hpp | 38 …algebra.for_each3( out , in , dxdt , typename Operations::template scale_sum2< value_type , Time >… in operator ()()
|
/third_party/boost/libs/numeric/odeint/doc/concepts/ |
D | state_algebra_operations.qbk | 92 …[[Vector Operation with arity 3] [`algebra.for_each3( y , x1 , x2 , operation3 )`] [void] [Calls `… 121 …[[Vector operation] [`algebra.for_each3( y , x1 , x2 , Operations::scale_sum2< Value1 , Value2 >( …
|
/third_party/boost/boost/numeric/odeint/external/thrust/ |
D | thrust_algebra.hpp | 82 static void for_each3( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , Operation op ) in for_each3() function
|
/third_party/boost/boost/numeric/odeint/algebra/detail/ |
D | for_each.hpp | 44 …inline void for_each3( Iterator1 first1 , Iterator1 last1 , Iterator2 first2 , Iterator3 first3, O… in for_each3() function
|
/third_party/boost/boost/numeric/odeint/external/openmp/ |
D | openmp_nested_algebra.hpp | 73 …template< class S0 , class S1 , class S2 , class Op > static void for_each3 ( S0 &s0 , S1 &s1 , S2… 79 …for( size_t i = 0 ; i < len ; i++ ) InnerAlgebra::for_each3( beg0 [i] , beg1 [i] , beg2 [i] , op );
|