Stan  2.10.0
probability, sampling & optimization
arg_sample.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_SAMPLE_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_SAMPLE_HPP
3 
11 
12 namespace stan {
13  namespace services {
14 
16  public:
18  _name = "sample";
19  _description = "Bayesian inference with Markov Chain Monte Carlo";
20 
21  _subarguments.push_back(new arg_num_samples());
22  _subarguments.push_back(new arg_num_warmup());
23  _subarguments.push_back(new arg_save_warmup());
24  _subarguments.push_back(new arg_thin());
25  _subarguments.push_back(new arg_adapt());
26  _subarguments.push_back(new arg_sample_algo());
27  }
28  };
29 
30  } // services
31 } // stan
32 
33 #endif
34 
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

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