Stan  2.14.0
probability, sampling & optimization
vector_var_decl.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_NODE_VECTOR_VAR_DECL_HPP
2 #define STAN_LANG_AST_NODE_VECTOR_VAR_DECL_HPP
3 
7 #include <string>
8 #include <vector>
9 
10 namespace stan {
11  namespace lang {
12 
16  struct vector_var_decl : public base_var_decl {
21 
26 
32 
46  const expression& M,
47  const std::string& name,
48  const std::vector<expression>& dims,
49  const expression& def);
50  };
51  }
52 }
53 #endif
Probability, optimization and sampling library.
AST structure for a range object with a low and high value.
Definition: range.hpp:14
vector_var_decl()
Construct a column vector variable declaration with default values.
range range_
Option lower and upper bounds for values in the vector.
Structure to hold a column vector variable declaration.
expression M_
Number of rows in the column vector (its size).
AST base class for variable declarations, which share most of their structure.

     [ Stan Home Page ] © 2011–2016, Stan Development Team.