#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, vector); double getValue(vector, vector); }; #endif