Fixing silent bug for not finding the tuner
[satune.git] / src / Tuner / serializetuner.h
1 #ifndef SERIALIZETUNER_H
2 #define SERIALIZETUNER_H
3 #include "searchtuner.h"
4
5 class SerializeTuner : public SearchTuner {
6 public:
7         SerializeTuner(const char *filename);
8         int getTunable(TunableParam param, TunableDesc *descriptor);
9         int getVarTunable(VarType vartype1, VarType vartype2, TunableParam param, TunableDesc *descriptor);
10         CMEMALLOC;
11 };
12
13 #endif