Skip to content

Commit 31a2331

Browse files
committed
devtools::document
1 parent b6a821c commit 31a2331

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ Imports: Rcpp, future, future.apply, parallelly
1717
Suggests: covr, testthat, ks, KernSmooth, cramer
1818
Encoding: UTF-8
1919
LazyData: TRUE
20-
RoxygenNote: 7.0.2
20+
RoxygenNote: 7.1.2

NAMESPACE

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export(rmvg)
99
export(rmvk)
1010
export(ruvk)
1111
importFrom(Rcpp,sourceCpp)
12-
importFrom(future,multiprocess)
12+
importFrom(future,multicore)
13+
importFrom(future,multisession)
1314
importFrom(future,plan)
1415
importFrom(future.apply,future_lapply)
1516
importFrom(stats,bw.SJ)

R/RcppExports.R

+1
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,4 @@ cpp_rmvk <- function(n, y, bandwidth, weights, kernel = "gaussian", shrinked = F
88
cpp_ruvk <- function(n, y, bandwidth, weights, kernel = "gaussian", shrinked = FALSE) {
99
.Call('_kernelboot_cpp_ruvk', PACKAGE = 'kernelboot', n, y, bandwidth, weights, kernel, shrinked)
1010
}
11+

src/RcppExports.cpp

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55

66
using namespace Rcpp;
77

8+
#ifdef RCPP_USE_GLOBAL_ROSTREAM
9+
Rcpp::Rostream<true>& Rcpp::Rcout = Rcpp::Rcpp_cout_get();
10+
Rcpp::Rostream<false>& Rcpp::Rcerr = Rcpp::Rcpp_cerr_get();
11+
#endif
12+
813
// cpp_rmvk
914
NumericMatrix cpp_rmvk(const int& n, const NumericMatrix& y, const NumericVector& bandwidth, const NumericVector& weights, const std::string& kernel, const bool& shrinked);
1015
RcppExport SEXP _kernelboot_cpp_rmvk(SEXP nSEXP, SEXP ySEXP, SEXP bandwidthSEXP, SEXP weightsSEXP, SEXP kernelSEXP, SEXP shrinkedSEXP) {

0 commit comments

Comments
 (0)