I am running ctStanFit to receive a Bayesian estimation via Stan’s NUTS sampler. An error message is infinite loop printing while doing so. This doesn’t seem to be interfering with the underlying computation as the function appears to run to completion (albeit probably slower). The error is
sh: findstr: command not found
From a quick search of the codebase, there doesn't appear to be many instances of the findstr function. Just here and here.
As brought up by Jonah here, the below code does NOT produce the same error pattern
library(rstan)
code <- "
parameters {
real x;
}
model {
x ~ normal(0, 1);
}
"
fit <- stan(model_code = code)
Any help is appreciated. Thanks in advance!