-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRcppExports.cpp
More file actions
36 lines (30 loc) · 1.5 KB
/
RcppExports.cpp
File metadata and controls
36 lines (30 loc) · 1.5 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
// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
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
// greedy_set_cover2
IntegerMatrix greedy_set_cover2(const IntegerVector& i0, const IntegerVector& i1, const IntegerVector& group_sizes_i0, const IntegerVector& group_sizes_i1);
RcppExport SEXP _RcppGreedySetCover_greedy_set_cover2(SEXP i0SEXP, SEXP i1SEXP, SEXP group_sizes_i0SEXP, SEXP group_sizes_i1SEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< const IntegerVector& >::type i0(i0SEXP);
Rcpp::traits::input_parameter< const IntegerVector& >::type i1(i1SEXP);
Rcpp::traits::input_parameter< const IntegerVector& >::type group_sizes_i0(group_sizes_i0SEXP);
Rcpp::traits::input_parameter< const IntegerVector& >::type group_sizes_i1(group_sizes_i1SEXP);
rcpp_result_gen = Rcpp::wrap(greedy_set_cover2(i0, i1, group_sizes_i0, group_sizes_i1));
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_RcppGreedySetCover_greedy_set_cover2", (DL_FUNC) &_RcppGreedySetCover_greedy_set_cover2, 4},
{NULL, NULL, 0}
};
RcppExport void R_init_RcppGreedySetCover(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}