Breaking Multituner into comptuner and kmeanstuner
[satune.git] / src / Tuner / multituner.h
diff --git a/src/Tuner/multituner.h b/src/Tuner/multituner.h
deleted file mode 100644 (file)
index cf42d9f..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef MULTITUNER_H
-#define MULTITUNER_H
-#include "classlist.h"
-#include "structs.h"
-#include "basictuner.h"
-
-
-class MultiTuner : public BasicTuner {
-public:
-       MultiTuner(uint budget, uint rounds, uint timeout);
-       void readData(uint numRuns);
-       void tuneK();
-       void tune();
-       void findBestThreeTuners();
-protected:
-       double evaluateAll(TunerRecord *tuner);
-       void mapProblemsToTuners(Vector<TunerRecord *> *tunerV);
-       void improveTuners(Vector<TunerRecord *> *tunerV);
-       TunerRecord *tune(TunerRecord *tuner);
-       uint rounds;
-};
-
-inline long long min(long long num1, long long num2, long long num3) {
-       return num1 < num2 && num1 < num3 ? num1 :
-                                num2 < num3 ? num2 : num3;
-}
-
-#endif