#ifndef LINEAR_MODEL_H_ #define LINEAR_MODEL_H_ #include #include namespace opt_utilities { template class lin1d :public model,std::string> { private: model >* do_clone()const { return new lin1d(*this); } public: lin1d() { this->push_param_info(param_info >("k",1)); this->push_param_info(param_info >("b",0)); } public: T do_eval(const T& x,const std::vector& param) { return x*get_element(param,0)+get_element(param,1); } private: std::string do_to_string()const { return "linear model\n" "y=k*x+b\n"; } }; }; #endif //EOF