Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
arg_optimize_algo.hpp
Go to the documentation of this file.
1 #ifndef STAN__GM__ARGUMENTS__OPTIMIZE__ALGO__HPP
2 #define STAN__GM__ARGUMENTS__OPTIMIZE__ALGO__HPP
3 
5 
9 
10 namespace stan {
11 
12  namespace gm {
13 
15 
16  public:
17 
19 
20  _name = "algorithm";
21  _description = "Optimization algorithm";
22 
23  _values.push_back(new arg_bfgs());
24  _values.push_back(new arg_lbfgs());
25  _values.push_back(new arg_newton());
26 
27  _default_cursor = 1;
29 
30  }
31 
32  };
33 
34  } // gm
35 
36 } // stan
37 
38 #endif
39 
std::vector< argument * > _values
std::string _name
Definition: argument.hpp:76
std::string _description
Definition: argument.hpp:77

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