Warning in odin2::odin({: Found 2 compatibility issues
Replace calls to 'user()' with 'parameter()'
✖ sd <- user()
✔ sd <- parameter()
Replace calls to r-style random number calls (e.g., 'rnorm()') with monty-stye
calls (e.g., 'Normal()')
✖ update(y) <- y + rnorm(0, sd)
✔ update(y) <- y + Normal(0, sd)