[Yuima-commits] r542 - pkg/yuima/src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Tue Dec 13 02:50:45 CET 2016
Author: kamatani
Date: 2016-12-13 02:50:45 +0100 (Tue, 13 Dec 2016)
New Revision: 542
Modified:
pkg/yuima/src/RcppExports.cpp
Log:
Modified: pkg/yuima/src/RcppExports.cpp
===================================================================
--- pkg/yuima/src/RcppExports.cpp 2016-12-06 03:00:13 UTC (rev 541)
+++ pkg/yuima/src/RcppExports.cpp 2016-12-13 01:50:45 UTC (rev 542)
@@ -5,6 +5,31 @@
using namespace Rcpp;
+// sqnorm
+double sqnorm(NumericVector x);
+RcppExport SEXP yuima_sqnorm(SEXP xSEXP) {
+BEGIN_RCPP
+ Rcpp::RObject rcpp_result_gen;
+ Rcpp::RNGScope rcpp_rngScope_gen;
+ Rcpp::traits::input_parameter< NumericVector >::type x(xSEXP);
+ rcpp_result_gen = Rcpp::wrap(sqnorm(x));
+ return rcpp_result_gen;
+END_RCPP
+}
+// makeprop
+NumericVector makeprop(NumericVector mu, NumericVector sample, NumericVector low, NumericVector up);
+RcppExport SEXP yuima_makeprop(SEXP muSEXP, SEXP sampleSEXP, SEXP lowSEXP, SEXP upSEXP) {
+BEGIN_RCPP
+ Rcpp::RObject rcpp_result_gen;
+ Rcpp::RNGScope rcpp_rngScope_gen;
+ Rcpp::traits::input_parameter< NumericVector >::type mu(muSEXP);
+ Rcpp::traits::input_parameter< NumericVector >::type sample(sampleSEXP);
+ Rcpp::traits::input_parameter< NumericVector >::type low(lowSEXP);
+ Rcpp::traits::input_parameter< NumericVector >::type up(upSEXP);
+ rcpp_result_gen = Rcpp::wrap(makeprop(mu, sample, low, up));
+ return rcpp_result_gen;
+END_RCPP
+}
// W1
double W1(NumericMatrix crossdx, NumericMatrix b, NumericMatrix A, double h);
RcppExport SEXP yuima_W1(SEXP crossdxSEXP, SEXP bSEXP, SEXP ASEXP, SEXP hSEXP) {
@@ -32,31 +57,6 @@
return rcpp_result_gen;
END_RCPP
}
-// sqnorm
-double sqnorm(NumericVector x);
-RcppExport SEXP yuima_sqnorm(SEXP xSEXP) {
-BEGIN_RCPP
- Rcpp::RObject rcpp_result_gen;
- Rcpp::RNGScope rcpp_rngScope_gen;
- Rcpp::traits::input_parameter< NumericVector >::type x(xSEXP);
- rcpp_result_gen = Rcpp::wrap(sqnorm(x));
- return rcpp_result_gen;
-END_RCPP
-}
-// makeprop
-NumericVector makeprop(NumericVector mu, NumericVector sample, NumericVector low, NumericVector up);
-RcppExport SEXP yuima_makeprop(SEXP muSEXP, SEXP sampleSEXP, SEXP lowSEXP, SEXP upSEXP) {
-BEGIN_RCPP
- Rcpp::RObject rcpp_result_gen;
- Rcpp::RNGScope rcpp_rngScope_gen;
- Rcpp::traits::input_parameter< NumericVector >::type mu(muSEXP);
- Rcpp::traits::input_parameter< NumericVector >::type sample(sampleSEXP);
- Rcpp::traits::input_parameter< NumericVector >::type low(lowSEXP);
- Rcpp::traits::input_parameter< NumericVector >::type up(upSEXP);
- rcpp_result_gen = Rcpp::wrap(makeprop(mu, sample, low, up));
- return rcpp_result_gen;
-END_RCPP
-}
// detcpp
double detcpp(NumericMatrix A);
RcppExport SEXP yuima_detcpp(SEXP ASEXP) {
More information about the Yuima-commits
mailing list