Stan  2.5.0
probability, sampling & optimization
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
arg_seed.hpp
Go to the documentation of this file.
1 #ifndef STAN__GM__ARGUMENTS__SEED__HPP
2 #define STAN__GM__ARGUMENTS__SEED__HPP
3 
5 
6 namespace stan {
7 
8  namespace gm {
9 
10  class arg_seed: public u_int_argument {
11 
12  public:
13 
15  _name = "seed";
16  _description = "Random number generator seed";
17  _validity = "seed > 0, if negative seed is generated from time";
18  _default = "-1";
19  _default_value = -1;
20  _constrained = false;
21  _good_value = 18383;
23  };
24 
25  };
26 
27  } // gm
28 
29 } // stan
30 
31 #endif
32 
std::string _name
Definition: argument.hpp:76
std::string _description
Definition: argument.hpp:77

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