structure - The structure of a variable
| x : | RevObject (pass by const reference) |
| The variable. | |
| verbose : | Bool (pass by value) |
| Do you want all the information? | |
| Default : FALSE |
# create a variable
a <- 1
b := exp(a)
# now create a deterministic variable which will be a child of 'b'
c := ln(b)
# now create a constant variable which will not be a child of 'b'
d <- ln(b)
str(b)