-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRcppExports.cpp
114 lines (106 loc) · 4.06 KB
/
RcppExports.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include "../inst/include/proteoCpp.h"
#include <Rcpp.h>
#include <string>
#include <set>
using namespace Rcpp;
#ifdef RCPP_USE_GLOBAL_ROSTREAM
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
#endif
// par_distC
List par_distC(IntegerVector cols, List mat);
static SEXP _proteoCpp_par_distC_try(SEXP colsSEXP, SEXP matSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::traits::input_parameter< IntegerVector >::type cols(colsSEXP);
Rcpp::traits::input_parameter< List >::type mat(matSEXP);
rcpp_result_gen = Rcpp::wrap(par_distC(cols, mat));
return rcpp_result_gen;
END_RCPP_RETURN_ERROR
}
RcppExport SEXP _proteoCpp_par_distC(SEXP colsSEXP, SEXP matSEXP) {
SEXP rcpp_result_gen;
{
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = PROTECT(_proteoCpp_par_distC_try(colsSEXP, matSEXP));
}
Rboolean rcpp_isInterrupt_gen = Rf_inherits(rcpp_result_gen, "interrupted-error");
if (rcpp_isInterrupt_gen) {
UNPROTECT(1);
Rf_onintr();
}
bool rcpp_isLongjump_gen = Rcpp::internal::isLongjumpSentinel(rcpp_result_gen);
if (rcpp_isLongjump_gen) {
Rcpp::internal::resumeJump(rcpp_result_gen);
}
Rboolean rcpp_isError_gen = Rf_inherits(rcpp_result_gen, "try-error");
if (rcpp_isError_gen) {
SEXP rcpp_msgSEXP_gen = Rf_asChar(rcpp_result_gen);
UNPROTECT(1);
Rf_error(CHAR(rcpp_msgSEXP_gen));
}
UNPROTECT(1);
return rcpp_result_gen;
}
// to_lgldistC
LogicalVector to_lgldistC(LogicalMatrix m);
static SEXP _proteoCpp_to_lgldistC_try(SEXP mSEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::traits::input_parameter< LogicalMatrix >::type m(mSEXP);
rcpp_result_gen = Rcpp::wrap(to_lgldistC(m));
return rcpp_result_gen;
END_RCPP_RETURN_ERROR
}
RcppExport SEXP _proteoCpp_to_lgldistC(SEXP mSEXP) {
SEXP rcpp_result_gen;
{
Rcpp::RNGScope rcpp_rngScope_gen;
rcpp_result_gen = PROTECT(_proteoCpp_to_lgldistC_try(mSEXP));
}
Rboolean rcpp_isInterrupt_gen = Rf_inherits(rcpp_result_gen, "interrupted-error");
if (rcpp_isInterrupt_gen) {
UNPROTECT(1);
Rf_onintr();
}
bool rcpp_isLongjump_gen = Rcpp::internal::isLongjumpSentinel(rcpp_result_gen);
if (rcpp_isLongjump_gen) {
Rcpp::internal::resumeJump(rcpp_result_gen);
}
Rboolean rcpp_isError_gen = Rf_inherits(rcpp_result_gen, "try-error");
if (rcpp_isError_gen) {
SEXP rcpp_msgSEXP_gen = Rf_asChar(rcpp_result_gen);
UNPROTECT(1);
Rf_error(CHAR(rcpp_msgSEXP_gen));
}
UNPROTECT(1);
return rcpp_result_gen;
}
// validate (ensure exported C++ functions exist before calling them)
static int _proteoCpp_RcppExport_validate(const char* sig) {
static std::set<std::string> signatures;
if (signatures.empty()) {
signatures.insert("List(*par_distC)(IntegerVector,List)");
signatures.insert("LogicalVector(*to_lgldistC)(LogicalMatrix)");
}
return signatures.find(sig) != signatures.end();
}
// registerCCallable (register entry points for exported C++ functions)
RcppExport SEXP _proteoCpp_RcppExport_registerCCallable() {
R_RegisterCCallable("proteoCpp", "_proteoCpp_par_distC", (DL_FUNC)_proteoCpp_par_distC_try);
R_RegisterCCallable("proteoCpp", "_proteoCpp_to_lgldistC", (DL_FUNC)_proteoCpp_to_lgldistC_try);
R_RegisterCCallable("proteoCpp", "_proteoCpp_RcppExport_validate", (DL_FUNC)_proteoCpp_RcppExport_validate);
return R_NilValue;
}
static const R_CallMethodDef CallEntries[] = {
{"_proteoCpp_par_distC", (DL_FUNC) &_proteoCpp_par_distC, 2},
{"_proteoCpp_to_lgldistC", (DL_FUNC) &_proteoCpp_to_lgldistC, 1},
{"_proteoCpp_RcppExport_registerCCallable", (DL_FUNC) &_proteoCpp_RcppExport_registerCCallable, 0},
{NULL, NULL, 0}
};
RcppExport void R_init_proteoCpp(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}