Stan  2.10.0
probability, sampling & optimization
arg_optimize_algo.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_OPTIMIZE_ALGO_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_OPTIMIZE_ALGO_HPP
3 
8 
9 namespace stan {
10  namespace services {
11 
13  public:
15  _name = "algorithm";
16  _description = "Optimization algorithm";
17 
18  _values.push_back(new arg_bfgs());
19  _values.push_back(new arg_lbfgs());
20  _values.push_back(new arg_newton());
21 
22  _default_cursor = 1;
24  }
25  };
26 
27  } // services
28 } // stan
29 
30 #endif
31 
std::vector< argument * > _values
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

     [ Stan Home Page ] © 2011–2016, Stan Development Team.