Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_save_warmup.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_SAVE_WARMUP_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_SAVE_WARMUP_HPP
3
4
#include <
stan/services/arguments/singleton_argument.hpp
>
5
6
namespace
stan
{
7
8
namespace
services {
9
10
class
arg_save_warmup
:
public
bool_argument
{
11
public
:
12
arg_save_warmup
():
bool_argument
() {
13
_name
=
"save_warmup"
;
14
_description
=
"Stream warmup samples to output?"
;
15
_validity
=
"[0, 1]"
;
16
_default
=
"0"
;
17
_default_value
=
false
;
18
_constrained
=
false
;
19
_good_value
= 1;
20
_value
=
_default_value
;
21
}
22
};
23
24
}
// services
25
}
// stan
26
27
#endif
28
stan
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
stan::services::singleton_argument::_validity
std::string _validity
Definition:
singleton_argument.hpp:144
stan::services::valued_argument::_default
std::string _default
Definition:
valued_argument.hpp:42
stan::services::argument::_description
std::string _description
Definition:
argument.hpp:84
stan::services::arg_save_warmup::arg_save_warmup
arg_save_warmup()
Definition:
arg_save_warmup.hpp:12
stan::services::argument::_name
std::string _name
Definition:
argument.hpp:83
stan::services::singleton_argument::_value
T _value
Definition:
singleton_argument.hpp:147
stan::services::singleton_argument::_constrained
bool _constrained
Definition:
singleton_argument.hpp:150
stan::services::arg_save_warmup
Definition:
arg_save_warmup.hpp:10
stan::services::singleton_argument::_default_value
T _default_value
Definition:
singleton_argument.hpp:148
stan::services::singleton_argument
Definition:
singleton_argument.hpp:45
singleton_argument.hpp
stan::services::singleton_argument::_good_value
T _good_value
Definition:
singleton_argument.hpp:152
[
Stan Home Page
]
© 2011–2016, Stan Development Team.