forked from RcppCore/RcppEigen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
42 lines (39 loc) · 1.26 KB
/
RcppExports.cpp
File metadata and controls
42 lines (39 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// This file was generated by Rcpp::compileAttributes
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include "../inst/include/RcppEigen.h"
#include <Rcpp.h>
using namespace Rcpp;
// fastLm_Impl
Rcpp::List fastLm_Impl(Rcpp::NumericMatrix X, Rcpp::NumericVector y, int type);
RcppExport SEXP RcppEigen_fastLm_Impl(SEXP XSEXP, SEXP ySEXP, SEXP typeSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< Rcpp::NumericMatrix >::type X(XSEXP);
Rcpp::traits::input_parameter< Rcpp::NumericVector >::type y(ySEXP);
Rcpp::traits::input_parameter< int >::type type(typeSEXP);
__result = Rcpp::wrap(fastLm_Impl(X, y, type));
return __result;
END_RCPP
}
// eigen_version
Rcpp::IntegerVector eigen_version(bool single);
RcppExport SEXP RcppEigen_eigen_version(SEXP singleSEXP) {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
Rcpp::traits::input_parameter< bool >::type single(singleSEXP);
__result = Rcpp::wrap(eigen_version(single));
return __result;
END_RCPP
}
// Eigen_SSE
bool Eigen_SSE();
RcppExport SEXP RcppEigen_Eigen_SSE() {
BEGIN_RCPP
Rcpp::RObject __result;
Rcpp::RNGScope __rngScope;
__result = Rcpp::wrap(Eigen_SSE());
return __result;
END_RCPP
}