Stan  2.14.0
probability, sampling & optimization
statements_def.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_NODE_STATEMENTS_DEF_HPP
2 #define STAN_LANG_AST_NODE_STATEMENTS_DEF_HPP
3 
4 #include <stan/lang/ast.hpp>
5 #include <vector>
6 
7 namespace stan {
8  namespace lang {
9 
11 
12  statements::statements(const std::vector<var_decl>& local_decl,
13  const std::vector<statement>& stmts)
14  : local_decl_(local_decl), statements_(stmts) { }
15 
16  }
17 }
18 #endif
std::vector< statement > statements_
Sequence of statements.
Definition: statements.hpp:25
statements()
Nullary constructor for statements.
Probability, optimization and sampling library.
std::vector< var_decl > local_decl_
Sequence of variable declarations.
Definition: statements.hpp:20

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