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_static.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__STATIC__HMC__HPP
2
#define STAN__GM__ARGUMENTS__STATIC__HMC__HPP
3
4
#include <
stan/gm/arguments/categorical_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_int_time.hpp
>
7
8
namespace
stan {
9
10
namespace
gm {
11
12
class
arg_static
:
public
categorical_argument
{
13
14
public
:
15
16
arg_static
() {
17
18
_name
=
"static"
;
19
_description
=
"Static integration time"
;
20
21
_subarguments
.push_back(
new
arg_int_time
());
22
23
}
24
25
};
26
27
}
// gm
28
29
}
// stan
30
31
#endif
32
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_static
Definition:
arg_static.hpp:12
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::arg_static::arg_static
arg_static()
Definition:
arg_static.hpp:16
arg_int_time.hpp
stan::gm::arg_int_time
Definition:
arg_int_time.hpp:10
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.