Home
last modified time | relevance | path

Searched refs:m_dxdtnew (Results 1 – 2 of 2) sorted by relevance

/third_party/boost/boost/numeric/odeint/stepper/
Drosenbrock4.hpp159 m_dfdt() , m_dxdt() , m_dxdtnew() , in rosenbrock4()
200 deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c2 * dt ); in do_step()
202 … m_g2.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d2 * m_dfdt.m_v[i] + m_coef.c21 * m_g1.m_v[i] / dt; in do_step()
208 deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c3 * dt ); in do_step()
210 …m_g3.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d3 * m_dfdt.m_v[i] + ( m_coef.c31 * m_g1.m_v[i] + m_c… in do_step()
216 deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + m_coef.c4 * dt ); in do_step()
218 …m_g4.m_v[i] = m_dxdtnew.m_v[i] + dt * m_coef.d4 * m_dfdt.m_v[i] + ( m_coef.c41 * m_g1.m_v[i] + m_c… in do_step()
224 deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + dt ); in do_step()
226 …m_g5.m_v[i] = m_dxdtnew.m_v[i] + ( m_coef.c51 * m_g1.m_v[i] + m_coef.c52 * m_g2.m_v[i] + m_coef.c5… in do_step()
231 deriv_func( m_xtmp.m_v , m_dxdtnew.m_v , t + dt ); in do_step()
[all …]
Dcontrolled_runge_kutta.hpp718 … controlled_step_result res = try_step( system , x , dxdt , t , m_xnew.m_v , m_dxdtnew.m_v , dt ); in try_step()
722 boost::numeric::odeint::copy( m_dxdtnew.m_v , dxdt ); in try_step()
885 … return adjust_size_by_resizeability( m_dxdtnew , x , typename is_resizeable<deriv_type>::type() ); in resize_m_dxdt_new_impl()
919 wrapped_deriv_type m_dxdtnew; member in boost::numeric::odeint::controlled_runge_kutta