Stan  2.14.0
probability, sampling & optimization
base_expr_type.hpp
Go to the documentation of this file.
1 #ifndef STAN_LANG_AST_BASE_EXPR_TYPE_HPP
2 #define STAN_LANG_AST_BASE_EXPR_TYPE_HPP
3 
4 namespace stan {
5  namespace lang {
6 
12  typedef int base_expr_type;
13 
17  const int VOID_T = 0;
18 
22  const int INT_T = 1;
23 
27  const int DOUBLE_T = 2;
28 
32  const int VECTOR_T = 3;
33 
37  const int ROW_VECTOR_T = 4;
38 
42  const int MATRIX_T = 5;
43 
48  const int ILL_FORMED_T = 6;
49 
50  }
51 }
52 #endif
const int ROW_VECTOR_T
Row vector type; scalar type is real.
Probability, optimization and sampling library.
const int DOUBLE_T
Real scalar type.
int base_expr_type
The type of a base expression.
const int VOID_T
Void type.
const int INT_T
Integer type.
const int VECTOR_T
Column vector type; scalar type is real.
const int ILL_FORMED_T
Type denoting an ill-formed expression.
const int MATRIX_T
Matrix type; scalar type is real.

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