Stan  2.10.0
probability, sampling & optimization
arg_seed.hpp
Go to the documentation of this file.
1 #ifndef STAN_SERVICES_ARGUMENTS_ARG_SEED_HPP
2 #define STAN_SERVICES_ARGUMENTS_ARG_SEED_HPP
3 
5 
6 namespace stan {
7 
8  namespace services {
9 
10  class arg_seed: public u_int_argument {
11  public:
13  _name = "seed";
14  _description = "Random number generator seed";
15  _validity = "seed > 0, if negative seed is generated from time";
16  _default = "-1";
17  _default_value = -1;
18  _constrained = false;
19  _good_value = 18383;
21  }
22  };
23 
24  } // services
25 } // stan
26 
27 #endif
28 
Probability, optimization and sampling library.
std::string _description
Definition: argument.hpp:84

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