You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
1.1 KiB

// Generated by using Rcpp::compileAttributes() -> do not edit by hand
// Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
#include <Rcpp.h>
using namespace Rcpp;
// terminator
DataFrame terminator(int time, double from, double to, double by);
RcppExport SEXP _terminator_terminator(SEXP timeSEXP, SEXP fromSEXP, SEXP toSEXP, SEXP bySEXP) {
BEGIN_RCPP
Rcpp::RObject rcpp_result_gen;
Rcpp::RNGScope rcpp_rngScope_gen;
Rcpp::traits::input_parameter< int >::type time(timeSEXP);
Rcpp::traits::input_parameter< double >::type from(fromSEXP);
Rcpp::traits::input_parameter< double >::type to(toSEXP);
Rcpp::traits::input_parameter< double >::type by(bySEXP);
rcpp_result_gen = Rcpp::wrap(terminator(time, from, to, by));
return rcpp_result_gen;
END_RCPP
}
static const R_CallMethodDef CallEntries[] = {
{"_terminator_terminator", (DL_FUNC) &_terminator_terminator, 4},
{NULL, NULL, 0}
};
RcppExport void R_init_terminator(DllInfo *dll) {
R_registerRoutines(dll, NULL, CallEntries, NULL, NULL);
R_useDynamicSymbols(dll, FALSE);
}