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 for the latest Boost documentation.
Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template make_const_step_time_iterator_end

boost::numeric::odeint::make_const_step_time_iterator_end — Factory function for const_step_time_iterator. Constructs a end iterator.

Synopsis

// In header: <boost/numeric/odeint/iterator/const_step_time_iterator.hpp>


template<typename Stepper, typename System, typename State> 
  const_step_time_iterator< Stepper, System, State > 
  make_const_step_time_iterator_end(Stepper stepper, System system, State & x);

Description

Parameters:

stepper

The stepper to use during the iteration.

system

The system function (ODE) to solve.

x

The initial state. const_step_time_iterator store a reference of s and changes its value during the iteration.

Returns:

The const step time iterator.


PrevUpHomeNext