![]() |
Stan
2.14.0
probability, sampling & optimization
|
Go to the source code of this file.
Namespaces | |
| stan | |
| Probability, optimization and sampling library. | |
| stan::lang | |
Typedefs | |
| typedef int | stan::lang::var_origin |
| The type of a variable indicating where a variable was declared. More... | |
Variables | |
| const int | stan::lang::model_name_origin = 0 |
| Origin of variable is the name of the model. More... | |
| const int | stan::lang::data_origin = 1 |
| The origin of the variable is the data block. More... | |
| const int | stan::lang::transformed_data_origin = 2 |
| The origin of the variable is the transformed data block. More... | |
| const int | stan::lang::parameter_origin = 3 |
| The origin of the variable is the parameter block. More... | |
| const int | stan::lang::transformed_parameter_origin = 4 |
| The origin of the variable is the transformed parameter block. More... | |
| const int | stan::lang::derived_origin = 5 |
| The origin of the variable is ???. More... | |
| const int | stan::lang::local_origin = 6 |
| The origin of the variable is as a local variable. More... | |
| const int | stan::lang::function_argument_origin = 7 |
| The variable arose as a function argument to a non-void function that does not end in _lp or _rng. More... | |
| const int | stan::lang::function_argument_origin_lp = 8 |
| The variable arose as an argument to a non-void function with the _lp suffix. More... | |
| const int | stan::lang::function_argument_origin_rng = 9 |
| The variable arose as an argument to a non-void function with the _rng suffix. More... | |
| const int | stan::lang::void_function_argument_origin = 10 |
| The variable arose as an argument to a function returning void that does not have the _lp or _rng suffix. More... | |
| const int | stan::lang::void_function_argument_origin_lp = 11 |
| The variable arose as an argument to a function returning void with _lp suffix. More... | |
| const int | stan::lang::void_function_argument_origin_rng = 12 |
| The variable arose as an argument to a function returning void with an _rng suffix. More... | |