downloading reverse dependencies ... downloading Rdimtools_1.1.2.tar.gz ... ok downloading Riemann_0.1.4.tar.gz ... ok downloading T4cluster_0.1.2.tar.gz ... ok downloading TDAkit_0.1.2.tar.gz ... ok installing dependencies ‘ADMM’, ‘maotai’, ‘Rdimtools’, ‘RiemBase’, ‘rstiefel’, ‘T4cluster’, ‘TDAstats’ begin installing package ‘ADMM’ begin installing package ‘maotai’ begin installing package ‘RiemBase’ begin installing package ‘rstiefel’ begin installing package ‘TDAstats’ * installing *source* package ‘rstiefel’ ... ** this is package ‘rstiefel’ version ‘1.0.1’ ** package ‘rstiefel’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: ‘gcc-14 (Debian 14.2.0-16) 14.2.0’ make[1]: Entering directory '/home/hornik/tmp/scratch/Rtmp94aIFv/R.INSTALL12986110a171cc/rstiefel/src' gcc-14 -std=gnu23 -I"/home/hornik/tmp/R/include" -DNDEBUG -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fpic -g -O2 -Wall -Wstrict-prototypes -pedantic -mtune=native -c rstiefel.c -o rstiefel.o rstiefel.c: In function ‘rtheta_bmf’: rstiefel.c:69:10: warning: ‘th’ may be used uninitialized [-Wmaybe-uninitialized] 69 | return th; | ^~ rstiefel.c:44:10: note: ‘th’ was declared here 44 | double th; | ^~ rstiefel.c: In function ‘rtheta_bing’: rstiefel.c:136:10: warning: ‘th’ may be used uninitialized [-Wmaybe-uninitialized] 136 | return th; | ^~ rstiefel.c:119:10: note: ‘th’ was declared here 119 | double th; | ^~ gcc-14 -std=gnu23 -shared -L/home/hornik/tmp/R/lib -Wl,-O1 -o rstiefel.so rstiefel.o -L/home/hornik/tmp/R/lib -lR make[1]: Leaving directory '/home/hornik/tmp/scratch/Rtmp94aIFv/R.INSTALL12986110a171cc/rstiefel/src' installing to /home/hornik/tmp/CRAN_recheck/Library/00LOCK-rstiefel/00new/rstiefel/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rstiefel) * installing *source* package ‘TDAstats’ ... ** this is package ‘TDAstats’ version ‘0.4.1’ ** package ‘TDAstats’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: ‘g++-14 (Debian 14.2.0-16) 14.2.0’ using C++11 make[1]: Entering directory '/home/hornik/tmp/scratch/RtmpMFFevU/R.INSTALL129867418768e/TDAstats/src' g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fpic -g -O2 -Wall -pedantic -mtune=native -c RcppExports.cpp -o RcppExports.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fpic -g -O2 -Wall -pedantic -mtune=native -c ripser_short.cpp -o ripser_short.o ripser_short.cpp: In function ‘bool is_prime(coefficient_t_ripser)’: ripser_short.cpp:50:3: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation] 50 | for (coefficient_t_ripser p = 3, q = n / p, r = n % p; p <= q; p += 2, q = n / p, r = n % p) | ^~~ ripser_short.cpp:52:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’ 52 | return true; | ^~~~~~ ripser_short.cpp: In member function ‘value_t_ripser rips_filtration_comparator::diameter(index_t_ripser) const’: ripser_short.cpp:165:5: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation] 165 | for (index_t_ripser i = 0; i <= dim; ++i) | ^~~ ripser_short.cpp:167:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’ 167 | return diam; | ^~~~~~ ripser_short.cpp: In member function ‘void compressed_distance_matrix::init_rows() [with compressed_matrix_layout Layout = LOWER_TRIANGULAR]’: ripser_short.cpp:255:32: warning: comparison of integer expressions of different signedness: ‘index_t_ripser’ {aka ‘long int’} and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare] 255 | for (index_t_ripser i = 1; i < size(); ++i) { | ~~^~~~~~~~ ripser_short.cpp: In member function ‘void compressed_distance_matrix::init_rows() [with compressed_matrix_layout Layout = UPPER_TRIANGULAR]’: ripser_short.cpp:263:32: warning: comparison of integer expressions of different signedness: ‘index_t_ripser’ {aka ‘long int’} and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare] 263 | for (index_t_ripser i = 0; i < size() - 1; ++i) { | ~~^~~~~~~~~~~~ ripser_short.cpp: In function ‘compressed_lower_distance_matrix getLowerDistMatrix(Rcpp::NumericMatrix)’: ripser_short.cpp:557:17: warning: unused variable ‘numCols’ [-Wunused-variable] 557 | numCols = inputMat.ncol(); | ^~~~~~~ ripser_short.cpp: In function ‘Rcpp::NumericVector ripser_cpp(Rcpp::NumericMatrix, int, float, int)’: ripser_short.cpp:671:21: warning: comparison of integer expressions of different signedness: ‘int’ and ‘std::vector >::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] 671 | for (int i = 0; i < pers_hom.size(); i++) | ~~^~~~~~~~~~~~~~~~~ ripser_short.cpp:671:3: warning: this ‘for’ clause does not guard... [-Wmisleading-indentation] 671 | for (int i = 0; i < pers_hom.size(); i++) | ^~~ ripser_short.cpp:677:5: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘for’ 677 | return ans; | ^~~~~~ ripser_short.cpp: In instantiation of ‘void compute_pairs(std::vector&, hash_map&, index_t_ripser, index_t_ripser, value_t_ripser, coefficient_t_ripser, const std::vector&, const DistanceMatrix&, const ComparatorCofaces&, const Comparator&, const binomial_coeff_table&, std::vector >&) [with DistanceMatrix = compressed_distance_matrix; ComparatorCofaces = rips_filtration_comparator >; Comparator = rips_filtration_comparator >; index_t_ripser = long int; value_t_ripser = double; coefficient_t_ripser = short int]’: ripser_short.cpp:661:18: required from here 661 | compute_pairs(columns_to_reduce, pivot_column_index, dim, n, threshold, modulus, multiplicative_inverse, dist, | ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 662 | comp, comp_prev, binomial_coeff, pers_hom); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ripser_short.cpp:436:32: warning: comparison of integer expressions of different signedness: ‘index_t_ripser’ {aka ‘long int’} and ‘std::vector::size_type’ {aka ‘long unsigned int’} [-Wsign-compare] 436 | for (index_t_ripser i = 0; i < columns_to_reduce.size(); ++i) { | ~~^~~~~~~~~~~~~~~~~~~~~~~~~~ g++-14 -std=gnu++11 -shared -L/home/hornik/tmp/R/lib -Wl,-O1 -o TDAstats.so RcppExports.o ripser_short.o -L/home/hornik/tmp/R/lib -lR make[1]: Leaving directory '/home/hornik/tmp/scratch/RtmpMFFevU/R.INSTALL129867418768e/TDAstats/src' installing to /home/hornik/tmp/CRAN_recheck/Library/00LOCK-TDAstats/00new/TDAstats/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (TDAstats) * installing *source* package ‘RiemBase’ ... ** this is package ‘RiemBase’ version ‘0.2.5’ ** package ‘RiemBase’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: ‘g++-14 (Debian 14.2.0-16) 14.2.0’ using C++11 make[1]: Entering directory '/home/hornik/tmp/scratch/RtmpXdL7nr/R.INSTALL12986013ac93ff/RiemBase/src' g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I../inst/include -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c RcppExports.cpp -o RcppExports.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I../inst/include -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c engines.cpp -o engines.o In file included from ../inst/include/riemfactory.hpp:11, from engines.cpp:2: ../inst/include/manifolds/riem_04stiefel.h: In function ‘arma::mat stiefel_exp(arma::mat, arma::mat, double)’: ../inst/include/manifolds/riem_04stiefel.h:88:13: warning: unused variable ‘n’ [-Wunused-variable] 88 | const int n = x.n_rows; | ^ ../inst/include/manifolds/riem_04stiefel.h: In function ‘arma::mat stiefel_log(arma::mat, arma::mat)’: ../inst/include/manifolds/riem_04stiefel.h:108:13: warning: unused variable ‘n’ [-Wunused-variable] 108 | const int n = U0.n_rows; | ^ ../inst/include/manifolds/riem_04stiefel.h: In function ‘arma::mat stiefel_invretr(arma::mat, arma::mat)’: ../inst/include/manifolds/riem_04stiefel.h:168:7: warning: unused variable ‘n’ [-Wunused-variable] 168 | int n = x.n_rows; | ^ In file included from ../inst/include/riemfactory.hpp:12: ../inst/include/manifolds/riem_05grassmann.h: In function ‘double grassmann_dist(arma::mat, arma::mat)’: ../inst/include/manifolds/riem_05grassmann.h:34:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const arma::uword’ {aka ‘const unsigned int’} [-Wsign-compare] 34 | for (int i=0;i >&, arma::vec, double, double, double, int, double, bool)’: src_gathered.cpp:929:17: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare] 929 | for (int i=0;i= X.n_cols)){ | ~~~~~^~~~~~~~~~~ ver1_nonlinear.cpp:97:7: warning: unused variable ‘P’ [-Wunused-variable] 97 | int P = X.n_cols; | ^ ver1_nonlinear.cpp: In function ‘Rcpp::List dt_rpca(arma::mat&, double, double, int, double)’: ver1_nonlinear.cpp:394:7: warning: unused variable ‘N’ [-Wunused-variable] 394 | int N = X.n_rows; | ^ ver1_nonlinear.cpp:395:7: warning: unused variable ‘P’ [-Wunused-variable] 395 | int P = X.n_cols; | ^ g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppDist/include' -I'/home/hornik/tmp/CRAN_recheck/Library/maotai/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c ver1_utility.cpp -o ver1_utility.o g++-14 -std=gnu++11 -shared -L/home/hornik/tmp/R/lib -Wl,-O1 -o Rdimtools.so RcppExports.o Rdimtools_auxiliary.o example_class.o methods_estimation.o methods_handytools.o methods_linear.o methods_nonlinear.o ver1_computation.o ver1_feature.o ver1_linear.o ver1_nonlinear.o ver1_utility.o -fopenmp -llapack -L/home/hornik/tmp/R/lib -lRblas -lgfortran -lm -lquadmath -L/home/hornik/tmp/R/lib -lR make[1]: Leaving directory '/home/hornik/tmp/scratch/RtmpPEjPvM/R.INSTALL129ac72bc540f4/Rdimtools/src' installing to /home/hornik/tmp/CRAN_recheck/Library/00LOCK-Rdimtools/00new/Rdimtools/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (Rdimtools) begin installing package ‘T4cluster’ * installing *source* package ‘T4cluster’ ... ** this is package ‘T4cluster’ version ‘0.1.2’ ** package ‘T4cluster’ successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: ‘g++-14 (Debian 14.2.0-16) 14.2.0’ using C++11 make[1]: Entering directory '/home/hornik/tmp/scratch/RtmpygI159/R.INSTALL129e9d5fd0683a/T4cluster/src' g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c RcppExports.cpp -o RcppExports.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_SOC.cpp -o src_SOC.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_coresets.cpp -o src_coresets.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_functional.cpp -o src_functional.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_gauss.cpp -o src_gauss.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_gmm.cpp -o src_gmm.o src_gmm.cpp: In function ‘Rcpp::List gmm_11R(arma::mat&, int, double, int, bool)’: src_gmm.cpp:399:7: warning: variable ‘oldPar’ set but not used [-Wunused-but-set-variable] 399 | int oldPar = 0; | ^~~~~~ src_gmm.cpp: In function ‘double gmm_16Gfix_loglkd(arma::mat, arma::vec, arma::mat, arma::cube, arma::vec)’: src_gmm.cpp:551:7: warning: unused variable ‘p’ [-Wunused-variable] 551 | int p = X.n_cols; | ^ src_gmm.cpp: In function ‘arma::vec gmm_density(arma::mat&, arma::vec&, arma::mat&, arma::cube&)’: src_gmm.cpp:698:7: warning: unused variable ‘p’ [-Wunused-variable] 698 | int p = coords.n_cols; | ^ g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_kmeans.cpp -o src_kmeans.o src_kmeans.cpp: In function ‘Rcpp::List arma_kmeans_kmeanspp(arma::mat&, arma::mat&, int, int)’: src_kmeans.cpp:26:7: warning: unused variable ‘N’ [-Wunused-variable] 26 | int N = X.n_cols; | ^ g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_spectral.cpp -o src_spectral.o src_spectral.cpp: In function ‘Rcpp::List cpp_scNJW(arma::mat&, int, double, bool, int)’: src_spectral.cpp:61:7: warning: unused variable ‘N’ [-Wunused-variable] 61 | int N = D.n_rows; | ^ src_spectral.cpp: In function ‘Rcpp::List cpp_scSM(arma::mat&, int, double, bool, int)’: src_spectral.cpp:75:7: warning: unused variable ‘N’ [-Wunused-variable] 75 | int N = D.n_rows; | ^ src_spectral.cpp: In function ‘Rcpp::List cpp_scUL(arma::mat&, int, double, bool, int)’: src_spectral.cpp:89:7: warning: unused variable ‘N’ [-Wunused-variable] 89 | int N = D.n_rows; | ^ g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_sphere.cpp -o src_sphere.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c src_subspace.cpp -o src_subspace.o g++-14 -std=gnu++11 -I"/home/hornik/tmp/R/include" -DNDEBUG -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/Rcpp/include' -I'/home/hornik/lib/R/Library/4.5/x86_64-linux-gnu/RcppArmadillo/include' -I/usr/local/include -DUSE_TYPE_CHECKING_STRICT -D_FORTIFY_SOURCE=3 -fopenmp -fpic -g -O2 -Wall -pedantic -mtune=native -c utilities.cpp -o utilities.o g++-14 -std=gnu++11 -shared -L/home/hornik/tmp/R/lib -Wl,-O1 -o T4cluster.so RcppExports.o src_SOC.o src_coresets.o src_functional.o src_gauss.o src_gmm.o src_kmeans.o src_spectral.o src_sphere.o src_subspace.o utilities.o -fopenmp -llapack -L/home/hornik/tmp/R/lib -lRblas -lgfortran -lm -lquadmath -L/home/hornik/tmp/R/lib -lR make[1]: Leaving directory '/home/hornik/tmp/scratch/RtmpygI159/R.INSTALL129e9d5fd0683a/T4cluster/src' installing to /home/hornik/tmp/CRAN_recheck/Library/00LOCK-T4cluster/00new/T4cluster/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (T4cluster) checking maotai_0.2.6.tar.gz ... checking Rdimtools_1.1.2.tar.gz ... checking Riemann_0.1.4.tar.gz ... checking T4cluster_0.1.2.tar.gz ... checking TDAkit_0.1.2.tar.gz ... Depends: Package: maotai Imports: Matrix, Rcpp, Rdpack, RSpectra, Rtsne, RANN, cluster, labdsv, shapes, stats, utils, fastcluster, dbscan, pracma LinkingTo: Rcpp, RcppArmadillo, RcppDist Timings: user system elapsed maotai 104.395 8.457 115.266 Results: Check status summary: NOTE Source packages 1 Reverse depends 4 Check results summary: maotai ... NOTE * checking CRAN incoming feasibility ... [5s/7s] NOTE rdepends_Rdimtools ... NOTE * checking C++ specification ... NOTE * checking Rd files ... [5s/5s] NOTE rdepends_Riemann ... NOTE * checking C++ specification ... NOTE * checking Rd files ... [4s/4s] NOTE rdepends_T4cluster ... NOTE * checking C++ specification ... NOTE rdepends_TDAkit ... NOTE * checking C++ specification ... NOTE