Stan
2.5.0
probability, sampling & optimization
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
stan
gm
arguments
arg_output.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__OUTPUT__HPP
2
#define STAN__GM__ARGUMENTS__OUTPUT__HPP
3
4
#include <
stan/gm/arguments/categorical_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_output_file.hpp
>
7
#include <
stan/gm/arguments/arg_diagnostic_file.hpp
>
8
#include <
stan/gm/arguments/arg_refresh.hpp
>
9
10
namespace
stan {
11
12
namespace
gm {
13
14
class
arg_output
:
public
categorical_argument
{
15
16
public
:
17
18
arg_output
() {
19
20
_name
=
"output"
;
21
_description
=
"File output options"
;
22
23
_subarguments
.push_back(
new
arg_output_file
());
24
_subarguments
.push_back(
new
arg_diagnostic_file
());
25
_subarguments
.push_back(
new
arg_refresh
());
26
27
}
28
29
};
30
31
}
// gm
32
33
}
// stan
34
35
#endif
36
stan::gm::arg_output_file
Definition:
arg_output_file.hpp:10
stan::gm::arg_refresh
Definition:
arg_refresh.hpp:10
categorical_argument.hpp
stan::gm::categorical_argument
Definition:
categorical_argument.hpp:11
stan::gm::categorical_argument::_subarguments
std::vector< argument * > _subarguments
Definition:
categorical_argument.hpp:153
stan::gm::arg_output
Definition:
arg_output.hpp:14
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::arg_output::arg_output
arg_output()
Definition:
arg_output.hpp:18
arg_refresh.hpp
arg_output_file.hpp
stan::gm::arg_diagnostic_file
Definition:
arg_diagnostic_file.hpp:10
arg_diagnostic_file.hpp
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.