#ifndef GSL_SIMPLEX_METHOD #define GSL_SIMPLEX_METHOD #include //#include #include #include #include #include #include #include /* * */ #include namespace opt_utilities { template double gsl_func_adapter(const gsl_vector* v,void* params) { pT temp; temp.resize(v->size); for(size_t i=0;i*)params)->eval(temp); } template class gsl_simplex :public opt_method { public: typedef pT array1d_type; typedef rT T; private: func_obj* p_fo; optimizer* p_optimizer; //typedef blitz::Array array2d_type; private: array1d_type start_point; array1d_type end_point; private: rT threshold; private: rT func(const pT& x) { assert(p_fo!=0); return p_fo->eval(x); } public: gsl_simplex() :threshold(1e-4) {} virtual ~gsl_simplex() { }; gsl_simplex(const gsl_simplex& rhs) :p_fo(rhs.p_fo),p_optimizer(rhs.p_optimizer), start_point(rhs.start_point), end_point(rhs.end_point), threshold(rhs.threshold) { } gsl_simplex& operator=(const gsl_simplex& rhs) { threshold=rhs.threshold; p_fo=rhs.p_fo; p_optimizer=rhs.p_optimizer; opt_eq(start_point,rhs.start_point); opt_eq(end_point,rhs.end_point); } opt_method* do_clone()const { return new gsl_simplex(*this); } void do_set_start_point(const array1d_type& p) { start_point.resize(get_size(p)); opt_eq(start_point,p); } void do_set_precision(rT t) { threshold=t; } void do_set_optimizer(optimizer& o) { p_optimizer=&o; p_fo=p_optimizer->ptr_func_obj(); } pT do_optimize() { const gsl_multimin_fminimizer_type *T = gsl_multimin_fminimizer_nmsimplex; gsl_multimin_fminimizer *s = NULL; gsl_vector *ss, *x; gsl_multimin_function minex_func; size_t iter = 0; int status; double size; /* Starting point */ x = gsl_vector_alloc (get_size(start_point)); // gsl_vector_set (x, 0, 5.0); //gsl_vector_set (x, 1, 7.0); for(size_t i=0;i!=get_size(start_point);++i) { gsl_vector_set(x,i,get_element(start_point,i)); } /* Set initial step sizes to 1 */ ss = gsl_vector_alloc (get_size(start_point)); gsl_vector_set_all (ss, 1.0); //foo f; /* Initialize method and iterate */ minex_func.n = get_size(start_point); minex_func.f = &gsl_func_adapter >; minex_func.params = (void *)p_fo; s = gsl_multimin_fminimizer_alloc (T, get_size(start_point)); gsl_multimin_fminimizer_set (s, &minex_func, x, ss); do { iter++; status = gsl_multimin_fminimizer_iterate(s); if (status) break; //std::cerr<<"threshold="<x, 0), //gsl_vector_get (s->x, 1), // s->fval, size); } while (status == GSL_CONTINUE && iter < 100); /* foo f; gsl_vector_set (x, 0, 0.0); gsl_vector_set (x, 1, 0.0); cout<<"fdsa "; cout< >(x,(void*)&f)<x,i)); } gsl_vector_free(x); gsl_vector_free(ss); gsl_multimin_fminimizer_free (s); return end_point; } }; }; #endif //EOF