We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Glancing over the RcppArmadillo code, the Alt RNG setup directly uses R's RNG for uniform (e.g. Rf_runif(). However, the extension code in inst/RcppArmadilloExtension/sample.h does not.
Rf_runif()
inst/RcppArmadilloExtension/sample.h
So, likely this will need a patch that mirrors what is available in Base R. c.f. Implementation changes.
R_unif_rand()
This will likely be needed with Rcpp's local variant as well designed by @nathan-russell.
The text was updated successfully, but these errors were encountered:
Per a quick slack discussion, we'll likely want to rewrite portions of RcppArmadilloExtensions/sample.h to reuse parts of the Sugar functions in Rcpp.
RcppArmadilloExtensions/sample.h
Rcpp
Sorry, something went wrong.
No branches or pull requests
Glancing over the RcppArmadillo code, the Alt RNG setup directly uses R's RNG for uniform (e.g.
Rf_runif()
. However, the extension code ininst/RcppArmadilloExtension/sample.h
does not.So, likely this will need a patch that mirrors what is available in Base R. c.f. Implementation changes.
R_unif_rand()
in existing R codeThis will likely be needed with Rcpp's local variant as well designed by @nathan-russell.
The text was updated successfully, but these errors were encountered: