Closed cyianor closed 5 years ago
It's simply internal:
R> library(RcppEigen)
R> RcppEigen:::eigen_version(TRUE)
[1] 30305
R> RcppEigen:::eigen_version(FALSE)
major minor patch
3 3 5
R>
The .Call()
pattern is historic and what we used to do before Rcpp Attributes. I'll update the vignette.
In the
RcppEigen
vignette, on page 2, an example is given: Callingis supposed to return the version of Eigen used in
RcppEigen
, after loading the package. However, doing so inRcppEigen
, version 0.3.3.5.0, leads toI am wondering if
eigen_version
was removed and this is expected behaviour (in which case the vignette is out of date) or if something might have gone wrong when I installedRcppEigen
.A call to
sessionInfo()
returns the followingEDIT: I tested
RcppEigen
with the transpose example on page 5 in the vignette, which works fine.