|
@@ -62,9 +62,6 @@ fillAndHeuristic ControlBandit::next() {
|
|
|
case MT_EPS:
|
|
|
fah = this->methodEps();
|
|
|
break;
|
|
|
- case MT_EMA:
|
|
|
- fah = this->methodEma();
|
|
|
- break;
|
|
|
default:
|
|
|
fah = this->methodAvg();
|
|
|
}
|
|
@@ -117,13 +114,6 @@ fillAndHeuristic ControlBandit::methodEps() {
|
|
|
return fah;
|
|
|
}
|
|
|
|
|
|
-fillAndHeuristic ControlBandit::methodEma() {
|
|
|
- fillAndHeuristic fah;
|
|
|
- fah.fill = -1;
|
|
|
- fah.heuristic = -1;
|
|
|
- return fah;
|
|
|
-}
|
|
|
-
|
|
|
int ControlBandit::getBestFill() {
|
|
|
int max = 0;
|
|
|
int fill = 0;
|