Fix tabbing
[satune.git] / src / Tuner / randomtuner.h
1 #ifndef RANDOMTUNER_H
2 #define RANDOMTUNER_H
3 #include "classlist.h"
4 #include "structs.h"
5 #include "comptuner.h"
6 #include "basictuner.h"
7
8 /**
9  * This is a Tuner which is being used for
10  */
11 class RandomTuner : public BasicTuner {
12 public:
13         RandomTuner(uint _budget, uint _timeout);
14         virtual ~RandomTuner();
15         void tune();
16 protected:
17         bool randomMutation(SearchTuner *tuner);
18         TunerRecord *tune(SearchTuner *tuner);
19 };
20
21 #endif