MUQ  0.4.3
ThinScheduler.h
Go to the documentation of this file.
1 #ifndef THINSCHEDULER_H_
2 #define THINSCHEDULER_H_
3 
5 
6 #include <boost/property_tree/ptree.hpp>
7 
8 namespace muq {
9  namespace SamplingAlgorithms {
10 
12 
13  public:
14  ThinScheduler(boost::property_tree::ptree& pt);
15 
16  virtual ~ThinScheduler() = default;
17 
18  virtual bool ShouldSave(int step) override;
19 
20  private:
21  int thinIncr;
22 
23  };
24 
25  } // namespace SamplingAlgoirthms
26 } // namespace muq
27 
28 #endif
virtual bool ShouldSave(int step) override
ThinScheduler(boost::property_tree::ptree &pt)