Hi, this is the first time that I use brms. When I try to run my model, R prints the message Compiling stan program.... It appears to be instantly done running and nothing happens. There is no error message or anything and no object is created within the session.
> brm_model <-
   brms::brm(err_count ~ time + (1|participant) + (1|item) + (1|participant:item),
             data = trial_data,
             family = zero_inflated_poisson())
Compiling Stan program...
What might be the problem here? I use brms version ‎2.13.3, R version 4.0.x, and Windows 10. I have set up rtools40, as well.
Thank you for your help!