nCompiler
nCompiler copied to clipboard
Code-generate C++ from R
I suggest adding the topics `r`, `c-plus-plus`, `transpiler` in the About section, as explained at https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/classifying-your-repository-with-topics
So I tested creating a 'user' package that has `nCompiler` in `imports` in `DESCRIPTION` and `import(nCompiler)` in `NAMESPACE`. In this situation, `nCompiler` is not on the search path, and we...
CRAN usually complains about checking class membership with `==`, as I see in cases in `NC_LoadedObjEnv.R`, e.g., ``` get_DLLenv
If I have this basic nClass code in a function in a "user" package, R CMD check complains that `Rv` and `Cv` can't be found as global variables. Nothing we...
Not something to address now, as @perrydv indicated he didn't expect serialization to be fully working now, but I'll note that I try to unserialize outside of a testthat context...
In various cases, we print warnings to users (e.g., related to model initialization and unexpected logProb values (e.g., see our current `checkLogProb`) during MCMC sampling). We have ways to put...
In some cases in current nimble, we catch errors in user syntax during compilation but do not tell them what line of code produced the error. This is just a...
Just a general flag that nCompiler should systematically handle verbosity control both in compiled and uncompiled execution. One motivation is that CRAN checks new packages to see if print/cat calls...