heckendorfc
heckendorfc
@necronoise Can you try using --no-terminal instead of --really-quiet at: https://github.com/lwilletts/mpvc/blob/998604e339479ea4d37c6568af627030b2a1c69c/mpvc#L256
Removing `~/.cmdstan` might work.
There might be a directory called .cmdstan in your home directory that cmdstanr tries to install to.
Maybe you're using a different installation directory, you can read about it here: https://github.com/stan-dev/cmdstanr/blob/master/R/path.R#L18 Directories starting with . are often hidden so you might not be seeing it even if...
Yes, you can't load the package until you fix the directory I mentioned. ```R list.files("~/.cmdstan") ```
not your R.home or .libPaths, your user's home directory. `Sys.getenv("HOME")`
I think you're right. To bypass, you could pass text[-50] to exclude that 3-word line from your input.
I tried rewriting rangeQueryOneValue as an iterative algorithm as a proof of concept since it was already tail call, but it doesn't seem to make much difference on the CPU...