Stan  2.10.0
probability, sampling & optimization
arg_method.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_METHOD_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_METHOD_HPP
3 
9 
10 namespace stan {
11  namespace services {
12 
13  class arg_method: public list_argument {
14  public:
16  _name = "method";
17  _description = "Analysis method (Note that method= is optional)";
18 
19  _values.push_back(new arg_sample());
20  _values.push_back(new arg_optimize());
21  _values.push_back(new arg_variational());
22  _values.push_back(new arg_diagnose());
23 
24  _default_cursor = 0;
26  }
27  };
28 
29  } // services
30 } // stan
31 
32 #endif
33 
std::vector< argument * > _values
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

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