ts-aggregator/project_template/SMape.h
2022-12-13 12:36:06 +04:00

15 lines
356 B
C++

#ifndef SMAPE_H
#define SMAPE_H
#include "Estimation.h"
using namespace std;
// êðèòåðèé SMape. Íàñëåäóåòñÿ îò êëàññà Estimation.
// ðåàëèçóåò ìåòîä "ïîëó÷èòü çíà÷åíèå êðèòåðèÿ"
class SMape :public Estimation {
public:
SMape();
~SMape();
double getValue(int, vector<double>, vector<double>);
double getValue(vector<double>, vector<double>);
};
#endif