Stan
2.14.0
probability, sampling & optimization
src
stan
lang
ast
node
cholesky_factor_var_decl.hpp
Go to the documentation of this file.
1
#ifndef STAN_LANG_AST_NODE_CHOLESKY_FACTOR_VAR_DECL_HPP
2
#define STAN_LANG_AST_NODE_CHOLESKY_FACTOR_VAR_DECL_HPP
3
4
#include <
stan/lang/ast/node/base_var_decl.hpp
>
5
#include <
stan/lang/ast/node/expression.hpp
>
6
#include <string>
7
#include <vector>
8
9
namespace
stan
{
10
namespace
lang {
11
15
struct
cholesky_factor_var_decl
:
public
base_var_decl
{
19
expression
M_
;
20
24
expression
N_
;
25
30
cholesky_factor_var_decl
();
31
43
cholesky_factor_var_decl
(
const
expression
& M,
44
const
expression
& N,
45
const
std::string& name,
46
const
std::vector<expression>& dims,
47
const
expression
& def);
48
};
49
}
50
}
51
#endif
stan
Probability, optimization and sampling library.
Definition:
base_interrupt.hpp:4
stan::lang::expression
Definition:
expression.hpp:41
expression.hpp
stan::lang::cholesky_factor_var_decl::N_
expression N_
Number of columns.
Definition:
cholesky_factor_var_decl.hpp:24
stan::lang::cholesky_factor_var_decl
Structure to hold a Cholesky factor variable declaration.
Definition:
cholesky_factor_var_decl.hpp:15
stan::lang::base_var_decl
AST base class for variable declarations, which share most of their structure.
Definition:
base_var_decl.hpp:16
stan::lang::cholesky_factor_var_decl::cholesky_factor_var_decl
cholesky_factor_var_decl()
Construct a Cholesky factor variable declaration with default values.
Definition:
cholesky_factor_var_decl_def.hpp:11
base_var_decl.hpp
stan::lang::cholesky_factor_var_decl::M_
expression M_
Number of rows.
Definition:
cholesky_factor_var_decl.hpp:19
[
Stan Home Page
]
© 2011–2016, Stan Development Team.