MUQ  0.4.3
SaveSchedulerBase.h
Go to the documentation of this file.
1 #ifndef SAVESCHEDULERBASE_H_
2 #define SAVESCHEDULERBASE_H_
3 
4 namespace muq {
5  namespace SamplingAlgorithms {
6 
8 
9  public:
10  SaveSchedulerBase() = default;
11 
12  virtual ~SaveSchedulerBase() = default;
13 
14  virtual bool ShouldSave(int step) = 0;
15 
16  };
17 
18  } // namespace SamplingAlgoirthms
19 } // namespace muq
20 
21 #endif