Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Class template rosenbrock4_dense_output

boost::numeric::odeint::rosenbrock4_dense_output

Synopsis

// In header: <boost/numeric/odeint/stepper/rosenbrock4_dense_output.hpp>

template<typename ControlledStepper> 
class rosenbrock4_dense_output {
public:
  // types
  typedef ControlledStepper                             controlled_stepper_type;  
  typedef controlled_stepper_type::stepper_type         stepper_type;             
  typedef stepper_type::value_type                      value_type;               
  typedef stepper_type::state_type                      state_type;               
  typedef stepper_type::wrapped_state_type              wrapped_state_type;       
  typedef stepper_type::time_type                       time_type;                
  typedef stepper_type::deriv_type                      deriv_type;               
  typedef stepper_type::wrapped_deriv_type              wrapped_deriv_type;       
  typedef stepper_type::resizer_type                    resizer_type;             
  typedef dense_output_stepper_tag                      stepper_category;         
  typedef rosenbrock4_dense_output< ControlledStepper > dense_output_stepper_type;

  // public member functions
   m_x1();
   m_x2();
   m_current_state_x1(true);
   m_t();
   m_t_old();
   m_dt();
  template<typename StateType> 
    void initialize(const StateType &, time_type, time_type);
  template<typename System> std::pair< time_type, time_type > do_step(System);
  template<typename StateOut> void calc_state(time_type, StateOut &);
  template<typename StateOut> void calc_state(time_type, const StateOut &);
  template<typename StateType> void adjust_size(const StateType &);
  const state_type & current_state(void) const;
  time_type current_time(void) const;
  const state_type & previous_state(void) const;
  time_type previous_time(void) const;
  time_type current_time_step(void) const;

  // private member functions
  state_type & get_current_state(void);
  const state_type & get_current_state(void) const;
  state_type & get_old_state(void);
  const state_type & get_old_state(void) const;
  void toggle_current_state(void);
  template<typename StateIn> bool resize_impl(const StateIn &);

  // public data members
   __pad0__;
};

Description

rosenbrock4_dense_output public member functions

  1.  m_x1();
  2.  m_x2();
  3.  m_current_state_x1(true);
  4.  m_t();
  5.  m_t_old();
  6.  m_dt();
  7. template<typename StateType> 
      void initialize(const StateType & x0, time_type t0, time_type dt0);
  8. template<typename System> 
      std::pair< time_type, time_type > do_step(System system);
  9. template<typename StateOut> void calc_state(time_type t, StateOut & x);
  10. template<typename StateOut> void calc_state(time_type t, const StateOut & x);
  11. template<typename StateType> void adjust_size(const StateType & x);
  12. const state_type & current_state(void) const;
  13. time_type current_time(void) const;
  14. const state_type & previous_state(void) const;
  15. time_type previous_time(void) const;
  16. time_type current_time_step(void) const;

rosenbrock4_dense_output private member functions

  1. state_type & get_current_state(void);
  2. const state_type & get_current_state(void) const;
  3. state_type & get_old_state(void);
  4. const state_type & get_old_state(void) const;
  5. void toggle_current_state(void);
  6. template<typename StateIn> bool resize_impl(const StateIn & x);

PrevUpHomeNext