Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mod$variables() fails with includes if the model is not compiled first #680

Closed
rok-cesnovar opened this issue Jul 21, 2022 · 0 comments
Closed
Labels
bug Something isn't working

Comments

@rok-cesnovar
Copy link
Member

See comments in the example:

library(cmdstanr)

data_code <- "
data {
  int N;
}
"
data_file <- write_stan_file(code = data_code, basename = "data.stan")

model_code <- "
#include data.stan
parameters {
  vector[N] y;
}
model {
  y ~ std_normal();
}
"
model_file <- write_stan_file(code = model_code)

mod <- cmdstan_model(
  stan_file = model_file,
  include_paths = dirname(data_file),
  compile = FALSE
)
mod$variables() #this fails
mod$compile()
mod$variables() # this works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant