Home
last modified time | relevance | path

Searched refs:for_each3 (Results 1 – 25 of 29) sorted by relevance

12

/third_party/boost/libs/numeric/odeint/examples/2d_lattice/
Dnested_range_algebra.hpp19 …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/
Dsymplectic_rkn_stepper_base.hpp218 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/
Drunge_kutta4_classic.hpp103 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()
Dextrapolation_stepper.hpp150 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()
Dmodified_midpoint.hpp94 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()
Dbulirsch_stoer_dense_out.hpp197 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()
Deuler.hpp81 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()
Dadaptive_adams_bashforth_moulton.hpp184 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()
Dbulirsch_stoer.hpp233 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()
Drunge_kutta_cash_karp54_classic.hpp151 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/
Drange_algebra.cpp63 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()
Dfusion_algebra.cpp112 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/
Dmulti_array_algebra.hpp50 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()
Drange_algebra.hpp51 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()
Darray_algebra.hpp56 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
Dvector_space_algebra.hpp87 static void for_each3( S1 &s1 , S2 &s2 , S3 &s3 , Op op ) in for_each3() function
/third_party/boost/boost/numeric/odeint/stepper/detail/
Dpid_step_adjuster.hpp137 m_algebra.for_each3( err , x , dxdt , in adjust_stepsize()
Dgeneric_rk_call_algebra.hpp38 algebra.for_each3( s1 , s2 , s3 , op ); in operator ()()
60 algebra.for_each3( s1 , s2 , s4_array[0].m_v , op ); in operator ()()
Dadaptive_adams_coefficients.hpp143 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()
Dadams_bashforth_call_algebra.hpp39 …algebra.for_each3( out , in , steps[0].m_v , typename Operations::template scale_sum2< value_type … in operator ()()
Dadams_moulton_call_algebra.hpp38 …algebra.for_each3( out , in , dxdt , typename Operations::template scale_sum2< value_type , Time >… in operator ()()
/third_party/boost/libs/numeric/odeint/doc/concepts/
Dstate_algebra_operations.qbk92 …[[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/
Dthrust_algebra.hpp82 static void for_each3( StateType1 &s1 , StateType2 &s2 , StateType3 &s3 , Operation op ) in for_each3() function
/third_party/boost/boost/numeric/odeint/algebra/detail/
Dfor_each.hpp44 …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/
Dopenmp_nested_algebra.hpp73 …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 );

12