two best tuner instead of three
[satune.git] / src / Tuner / comptuner.h
1 #ifndef COMPTUNER_H
2 #define COMPTUNER_H
3 #include "classlist.h"
4 #include "structs.h"
5 #include "basictuner.h"
6
7
8 class CompTuner : public BasicTuner {
9 public:
10         CompTuner(uint budget, uint timeout);
11         virtual ~CompTuner();
12         void readData(uint numRuns);
13         void tune();
14         void findBestTwoTuners();
15 protected:
16
17 };
18
19 inline long long min(long long num1, long long num2, long long num3) {
20         return num1 < num2 && num1 < num3 ? num1 :
21                                  num2 < num3 ? num2 : num3;
22 }
23
24 #endif