Extend tuning framework
[satune.git] / src / Tuner / tunable.cc
1 #include "tunable.h"
2
3 DefaultTuner::DefaultTuner() {
4 }
5
6 int DefaultTuner::getTunable(TunableParam param, TunableDesc *descriptor) {
7         return descriptor->defaultValue;
8 }
9
10 int DefaultTuner::getVarTunable(VarType vartype, TunableParam param, TunableDesc *descriptor) {
11         return descriptor->defaultValue;
12 }
13
14 int DefaultTuner::getVarTunable(VarType vartype1, VarType vartype2, TunableParam param, TunableDesc *descriptor) {
15         return descriptor->defaultValue;
16 }