ALPS Home Libraries License Support People ALPS Web Site

PrevUpHomeNext

Class check_schedule

alps::check_schedule

Synopsis

// In header: <alps/check_schedule.hpp>


class check_schedule {
public:
  // types
  typedef boost::chrono::high_resolution_clock clock;     
  typedef clock::time_point                    time_point;
  typedef boost::chrono::duration< double >    duration;  

  // construct/copy/destruct
  check_schedule(double = 60., double = 900.);

  // public member functions
  bool pending() const;
  double check_interval() const;
  void update(double);
};

Description

check_schedule public construct/copy/destruct

  1. check_schedule(double tmin = 60., double tmax = 900.);

check_schedule public member functions

  1. bool pending() const;
  2. double check_interval() const;
  3. void update(double fraction);
Copyright © 1994, 2002-2005 Matthias Troyer, Synge Todo

PrevUpHomeNext