X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/d47d44b2ed067c834ef210ad544512e7581a1c8e..9fa3f99f5a059c1cac612bcdde1c4df82b07c6d1:/cost_func.h diff --git a/cost_func.h b/cost_func.h index 57d1188..c6984d2 100644 --- a/cost_func.h +++ b/cost_func.h @@ -3,18 +3,21 @@ #include #include +#include +// Define a polynomial function +// The factors are given at construction time, in a C-style string, +// separated by commas (eg. "1, 2, 3" for x^2 + 2x +3). class cost_func { public: - cost_func(const char *param); + cost_func(const char* param); ~cost_func(); - cost_func& operator=(const cost_func& ref); double operator()(double amount) const; std::string to_string(); + private: - int degree; - double *factor; + std::vector factors; }; #endif // !COST_FUNC_H