Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
arg_method.hpp
Go to the documentation of this file.
1 #ifndef STAN__GM__ARGUMENTS__METHOD__HPP
2 #define STAN__GM__ARGUMENTS__METHOD__HPP
3 
5 
9 
10 namespace stan {
11 
12  namespace gm {
13 
14  class arg_method: public list_argument {
15 
16  public:
17 
19 
20  _name = "method";
21  _description = "Analysis method (Note that method= is optional)";
22 
23  _values.push_back(new arg_sample());
24  _values.push_back(new arg_optimize());
25  _values.push_back(new arg_diagnose());
26 
27  _default_cursor = 0;
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.