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