Stan  2.14.0
probability, sampling & optimization
distribution.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_NODE_DISTRIBUTION_HPP
2 #define STAN_LANG_AST_NODE_DISTRIBUTION_HPP
3 
4 #include <string>
5 #include <vector>
6 
7 namespace stan {
8  namespace lang {
9 
10  struct expression;
11 
15  struct distribution {
19  std::string family_;
20 
24  std::vector<expression> args_;
25  };
26 
27  }
28 }
29 #endif
std::string family_
The name of the distribution.
Probability, optimization and sampling library.
Structure for a distribution with parameters.
std::vector< expression > args_
The sequence of parameters for the distribution.

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