void adjust_size( const StateType &x )
 {
     resize_impl( x );
     stepper_base_type::adjust_size( x );
 }
 void adjust_size( const StateIn &x )
 {
     resize_impl( x );
 }
 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
 void adjust_size( const StateIn & x )
 {
     if( resize_impl( x ) )
         m_first_call = true;
 }
 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 );
 }
 void adjust_size( const StateType &x )
 {
     resize_impl( x );
     m_stepper.stepper().resize( x );
 }