コード例 #1
0
 void adjust_size( const StateType &x )
 {
     resize_impl( x );
     stepper_base_type::adjust_size( x );
 }
コード例 #2
0
 void adjust_size( const StateIn &x )
 {
     resize_impl( x );
 }
コード例 #3
0
 void adjust_size( const StateType &x )
 {
     m_stepper.adjust_size( x );
     resize_impl( x );
 }
 void adjust_size( const StateType &x )
 {
     m_adams_bashforth.adjust_size( x );
     m_adams_moulton.adjust_size( x );
     resize_impl( x );
 }
コード例 #5
0
ファイル: velocity_verlet.hpp プロジェクト: imos/icfpc2015
 void adjust_size( const StateIn & x )
 {
     if( resize_impl( x ) )
         m_first_call = true;
 }
コード例 #6
0
 void adjust_size( const StateType &x )
 {
     resize_impl( x );
     resize_x_err( x );
 }
コード例 #7
0
 template < class StateIn > void adjust_size( const StateIn &x )
 {
     resize_impl( x );
     m_midpoint.adjust_size( x );
 }
コード例 #8
0
 void adjust_size( const StateType &x )
 {
     resize_impl( x );
     m_stepper.stepper().resize( x );
 }