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_test.hpp
Go to the documentation of this file.
1
#ifndef STAN__GM__ARGUMENTS__TEST__HPP
2
#define STAN__GM__ARGUMENTS__TEST__HPP
3
4
#include <
stan/gm/arguments/list_argument.hpp
>
5
6
#include <
stan/gm/arguments/arg_test_gradient.hpp
>
7
8
namespace
stan {
9
10
namespace
gm {
11
12
class
arg_test
:
public
list_argument
{
13
14
public
:
15
16
arg_test
() {
17
18
_name
=
"test"
;
19
_description
=
"Diagnostic test"
;
20
21
_values
.push_back(
new
arg_test_gradient
());
22
23
_default_cursor
= 0;
24
_cursor
=
_default_cursor
;
25
26
}
27
28
};
29
30
}
// gm
31
32
}
// stan
33
34
#endif
35
stan::gm::arg_test_gradient
Definition:
arg_test_gradient.hpp:12
stan::gm::list_argument::_default_cursor
int _default_cursor
Definition:
list_argument.hpp:183
arg_test_gradient.hpp
list_argument.hpp
stan::gm::list_argument::_values
std::vector< argument * > _values
Definition:
list_argument.hpp:185
stan::gm::list_argument
Definition:
list_argument.hpp:12
stan::gm::arg_test::arg_test
arg_test()
Definition:
arg_test.hpp:16
stan::gm::arg_test
Definition:
arg_test.hpp:12
stan::gm::argument::_name
std::string _name
Definition:
argument.hpp:76
stan::gm::list_argument::_cursor
int _cursor
Definition:
list_argument.hpp:182
stan::gm::argument::_description
std::string _description
Definition:
argument.hpp:77
[
Stan Home Page
]
© 2011–2014, Stan Development Team.