Stan
2.10.0
probability, sampling & optimization
Main Page
Namespaces
Classes
Files
File List
File Members
src
stan
services
arguments
arg_diagnostic_file.hpp
Go to the documentation of this file.
1
#ifndef STAN_SERVICES_ARGUMENTS_ARG_DIAGNOSTIC_FILE_HPP
2
#define STAN_SERVICES_ARGUMENTS_ARG_DIAGNOSTIC_FILE_HPP
3
4
#include <
stan/services/arguments/singleton_argument.hpp
>
5
6
namespace
stan
{
7
namespace
services {
8
9
class
arg_diagnostic_file
:
public
string_argument
{
10
public
:
11
arg_diagnostic_file
():
string_argument
() {
12
_name
=
"diagnostic_file"
;
13
_description
=
"Auxiliary output file for diagnostic information"
;
14
_validity
=
"Path to existing file"
;
15
_default
=
"\"\""
;
16
_default_value
=
""
;
17
_constrained
=
false
;
18
_good_value
=
"good"
;
19
_value
=
_default_value
;
20
}
21
};
22
23
}
// services
24
}
// stan
25
26
#endif
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::argument::_name
std::string _name
Definition:
argument.hpp:83
stan::services::arg_diagnostic_file::arg_diagnostic_file
arg_diagnostic_file()
Definition:
arg_diagnostic_file.hpp:11
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::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::services::arg_diagnostic_file
Definition:
arg_diagnostic_file.hpp:9
[
Stan Home Page
]
© 2011–2016, Stan Development Team.