Stan  2.10.0
probability, sampling & optimization
arg_metric.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_METRIC_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_METRIC_HPP
3 
8 
9 namespace stan {
10  namespace services {
11 
12  class arg_metric: public list_argument {
13  public:
15  _name = "metric";
16  _description = "Geometry of base manifold";
17 
18  _values.push_back(new arg_unit_e());
19  _values.push_back(new arg_diag_e());
20  _values.push_back(new arg_dense_e());
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.