Add tuner components
[satune.git] / src / Tuner / staticautotuner.h
1 #ifndef STATICAUTOTUNER_H
2 #define STATICAUTOTUNER_H
3 #include "autotuner.h"
4
5
6 class StaticAutoTuner : public AutoTuner {
7 public:
8         StaticAutoTuner(uint budget);
9         virtual void tune();
10         CMEMALLOC;
11 private:
12         StaticSearchTuner *mutateTuner(StaticSearchTuner *oldTuner);
13 };
14 #endif