#ifndef MAPE_H #define MAPE_H #include "Estimation.h" using namespace std; // критерий Mape. Наследуется от класса Estimation. // реализует метод "получить значение критерия" class Mape : public Estimation { public: Mape(); ~Mape(); double getValue(vector, vector); double getValue(int, vector, vector); }; #endif