1 // This file was generated by Rcpp::compileAttributes
2 // Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
3 
4 #include "../inst/include/RcppEigen.h"
5 #include <Rcpp.h>
6 
7 using namespace Rcpp;
8 
9 // fastLm_Impl
10 Rcpp::List fastLm_Impl(Rcpp::NumericMatrix X, Rcpp::NumericVector y, int type);
RcppEigen_fastLm_Impl(SEXP XSEXP,SEXP ySEXP,SEXP typeSEXP)11 RcppExport SEXP RcppEigen_fastLm_Impl(SEXP XSEXP, SEXP ySEXP, SEXP typeSEXP) {
12 BEGIN_RCPP
13     Rcpp::RObject __result;
14     Rcpp::RNGScope __rngScope;
15     Rcpp::traits::input_parameter< Rcpp::NumericMatrix >::type X(XSEXP);
16     Rcpp::traits::input_parameter< Rcpp::NumericVector >::type y(ySEXP);
17     Rcpp::traits::input_parameter< int >::type type(typeSEXP);
18     __result = Rcpp::wrap(fastLm_Impl(X, y, type));
19     return __result;
20 END_RCPP
21 }
22 // eigen_version
23 Rcpp::IntegerVector eigen_version(bool single);
RcppEigen_eigen_version(SEXP singleSEXP)24 RcppExport SEXP RcppEigen_eigen_version(SEXP singleSEXP) {
25 BEGIN_RCPP
26     Rcpp::RObject __result;
27     Rcpp::RNGScope __rngScope;
28     Rcpp::traits::input_parameter< bool >::type single(singleSEXP);
29     __result = Rcpp::wrap(eigen_version(single));
30     return __result;
31 END_RCPP
32 }
33 // Eigen_SSE
34 bool Eigen_SSE();
RcppEigen_Eigen_SSE()35 RcppExport SEXP RcppEigen_Eigen_SSE() {
36 BEGIN_RCPP
37     Rcpp::RObject __result;
38     Rcpp::RNGScope __rngScope;
39     __result = Rcpp::wrap(Eigen_SSE());
40     return __result;
41 END_RCPP
42 }
43