#include #include #include using namespace std; using namespace opt_utilities; template class lin1d :public model,std::string> { private: model >* do_clone()const { return new lin1d(*this); } const char* do_get_type_name()const { return "1d linear model"; } 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_get_information()const { return " f(x;k,b)=k x+b \ \ "; } }; static lin1d _model; extern "C" model,std::string>* create_model_object() { return &_model; }