==27979== Memcheck, a memory error detector ==27979== Copyright (C) 2002-2017, and GNU GPL'd, by Julian Seward et al. ==27979== Using Valgrind-3.15.0 and LibVEX; rerun with -h for copyright info ==27979== Command: /data/blackswan/ripley/R/R-devel-vg/bin/exec/R --vanilla --encoding=UTF-8 ==27979== R Under development (unstable) (2020-04-29 r78336) -- "Unsuffered Consequences" Copyright (C) 2020 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. Natural language support but running in an English locale R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > pkgname <- "FRegSigCom" > source(file.path(R.home("share"), "R", "examples-header.R")) > options(warn = 1) > library('FRegSigCom') Loading required package: fda Loading required package: Matrix Attaching package: ‘fda’ The following object is masked from ‘package:graphics’: matplot > > base::assign(".oldSearch", base::search(), pos = 'CheckExEnv') > base::assign(".old_wd", base::getwd(), pos = 'CheckExEnv') > cleanEx() > nameEx("Pork") > ### * Pork > > flush(stderr()); flush(stdout()) > > ### Name: Pork > ### Title: Pork fat samples > ### Aliases: Pork > ### Keywords: datasets > > ### ** Examples > > data(Pork) > str(Pork) List of 2 $ X: num [1:105, 1:566] 7.83 8.07 7.61 7.9 7.6 ... $ Y: num [1:105] 0.112 0.471 0.978 0.391 1.502 ... > > > > cleanEx() > nameEx("air") > ### * air > > flush(stderr()); flush(stdout()) > > ### Name: air > ### Title: Air quality data > ### Aliases: air > ### Keywords: datasets > > ### ** Examples > > data(air) > str(air) List of 7 $ NO2 : num [1:355, 1:24] 7.2 7.23 7.34 7.38 7.34 ... $ CO : num [1:355, 1:24] 7.08 6.98 7.15 7.34 7.12 ... $ NMHC : num [1:355, 1:24] 6.54 6.69 6.87 6.92 6.77 ... $ NOx : num [1:355, 1:24] 7.29 7.13 6.87 6.79 6.89 ... $ C6H6 : num [1:355, 1:24] 6.6 6.7 7.16 7.34 7.13 ... $ temperature: num [1:355, 1:24] 11.3 8.3 9.5 13.9 14.8 14.1 15.5 14.8 12 13.8 ... $ humidity : num [1:355, 1:24] 56.8 58.5 64.1 53.6 54.7 65.7 52.9 53.9 69.7 57.9 ... > > > > cleanEx() > nameEx("corn") > ### * corn > > flush(stderr()); flush(stdout()) > > ### Name: corn > ### Title: NIR of corn samples > ### Aliases: corn > > ### ** Examples > > data(corn) > str(corn) List of 2 $ X: num [1:80, 1:700] -0.01244 -0.01419 -0.01337 -0.01649 -0.00849 ... $ Y: num [1:80, 1:4] 0.5638 0.4613 0.2089 0.0696 0.1537 ... > > > > cleanEx() > nameEx("cv.ff.interaction") > ### * cv.ff.interaction > > flush(stderr()); flush(stdout()) > > ### Name: cv.ff.interaction > ### Title: Cross-validation for function-on-function regression models with > ### specified main effects and two-way interaction terms > ### Aliases: cv.ff.interaction > > ### ** Examples > > > ################################################################################# > # Example: interaction function-on-function model with > # specified effects > ############################################################################### > > > ptm <- proc.time() > library(FRegSigCom) > data(ocean) > Y=ocean[[1]] > Y.train=Y[1:50,] > Y.test=Y[-(1:50),] > t.y=seq(0,1, length.out = ncol(Y)) > X.list=list() > X.train.list=list() > X.test.list=list() > t.x.list=list() > for(i in 1:4) + { + X.list[[i]]=ocean[[i+1]] + X.train.list[[i]]=X.list[[i]][1:50,] + X.test.list[[i]]=X.list[[i]][-(1:50),] + t.x.list[[i]]=seq(0,1, length.out = ncol(X.list[[i]])) + } > main.effect=1:2 > inter.effect=rbind(c(1,1), c(1,2), c(2,2)) > fit.fix.adaptive=cv.ff.interaction(X.train.list, Y.train, t.x.list, t.y, + adaptive=TRUE, main.effect, inter.effect) **CV procedure for nonadaptive fitting** **(used to determine the adaptive constants)** **CV procedure for adaptive fitting** > Y.pred=pred.ff.interaction(fit.fix.adaptive, X.test.list) > > error<- mean((Y.pred-Y.test)^2) > print(c(" prediction error=", error)) [1] " prediction error=" "0.000223024831385517" > print(proc.time()-ptm) user system elapsed 165.557 0.839 275.162 > > > > > cleanEx() > nameEx("cv.fof.spike") > ### * cv.fof.spike > > flush(stderr()); flush(stdout()) > > ### Name: cv.fof.spike > ### Title: Cross-validation for linear function-on-function regression on > ### highly densely observed spiky data > ### Aliases: cv.fof.spike > > ### ** Examples > > > ########################################################################### > # Example: spiky function-on-function regresion > ########################################################################### > ptm <- proc.time() > library(FRegSigCom) > library(refund) > data(DTI) > I=which(is.na(apply(DTI$cca,1,mean))) > X=DTI$cca[-I,] # functional response > Y=DTI$rcst[-I,-(1:12)] #functional predictor > t.x <- list(seq(0,1,length=dim(X)[2])) > t.y <- seq(0,1,length=dim(Y)[2]) > # randomly split all the observations into a training set with 200 observations > # and a test set. > train.id=sample(1:nrow(Y), 30) > X.train <- list(X[train.id,]) > Y.train <- Y[train.id, ] > X.test <- list(X[-(train.id),]) > Y.test <- Y[-(train.id), ] > fit.cv=cv.fof.spike(X.train, Y.train, t.x, t.y) > Y.pred=pred.fof.spike(fit.cv, X.test) > error<- mean((Y.pred-Y.test)^2) > print(c("prediction error=", error)) [1] "prediction error=" "0.00472192440190688" > > print(proc.time()-ptm) user system elapsed 357.031 1.191 481.288 > > > > cleanEx() detaching ‘package:refund’ > nameEx("cv.fof.wv") > ### * cv.fof.wv > > flush(stderr()); flush(stdout()) > > ### Name: cv.fof.wv > ### Title: Cross-validation for wavelet-based linear function-on-function > ### regression method > ### Aliases: cv.fof.wv > > ### ** Examples > > > ######################################################################## > ## Example: wavelet function-on-function regresion > ######################################################################### > ptm <- proc.time() > library(FRegSigCom) > library(wavethresh) Loading required package: MASS WaveThresh: R wavelet software, release 4.6.8, installed Copyright Guy Nason and others 1993-2016 Note: nlevels has been renamed to nlevelsWT > library(refund) > data(DTI) > > I=which(is.na(apply(DTI$cca,1,mean))) > Y=DTI$cca[-I,] # functional response > X=DTI$rcst[-I,21:52] #functional predictor > n.wv=5 > > diagmat <- diag(2^n.wv) > W.x <- diagmat > for(i in 1:2^n.wv){ + tmp <- wd(diagmat[i,]) + tmp.cof <- accessC(tmp, level=0) + for(j in 0:(n.wv-1)) + tmp.cof <- c(tmp.cof, accessD(tmp, level=j)) + W.x[,i] <- tmp.cof + } > X.wv=X > > t.y <- seq(0,1,length=dim(Y)[2]) > # randomly split all the observations into a training set with 200 observations > # and a test set. > train.id=sample(1:nrow(Y), 50) > X.wv.train <- X.wv[train.id,] > Y.train <- Y[train.id, ] > X.wv.test <- X.wv[-(train.id),] > Y.test <- Y[-(train.id), ] > > fit.cv=cv.fof.wv(X.wv.train, Y.train, t.y, upp.comp=5) # use default upp.comp or larger [1] "The maximum components for all parameters" [1] 5 5 5 5 5 5 5 [1] "The CV fold " "1" [1] "The CV fold " "2" [1] "The CV fold " "3" [1] "The CV fold " "4" [1] "The CV fold " "5" > Y.pred=pred.fof.wv(fit.cv, X.wv.test) > error<- mean((Y.pred-Y.test)^2) > print(c(" prediction error=", error)) [1] " prediction error=" "0.00389877031417475" > print(proc.time()-ptm) user system elapsed 357.935 0.511 465.725 > > > > > cleanEx() detaching ‘package:refund’, ‘package:wavethresh’, ‘package:MASS’ > nameEx("cv.hd") > ### * cv.hd > > flush(stderr()); flush(stdout()) > > ### Name: cv.hd > ### Title: Cross-validation for sparse linear function-on-function > ### regression with a large number of functional predictors > ### Aliases: cv.hd > > ### ** Examples > > ######################################### > #toy example using the air quality data with p=1 > ######################################### > data(air) > t.x=seq(0,1,length=24) > t.y=seq(0,1,length=24) > air.cv=cv.hd(X=list(air[[2]][1:20,]), Y=air[[1]][1:20,], list(t.x), t.y, + K.cv=2, s.n.basis = 8, t.n.basis = 8) [1] "Calculate the maximum number of components for all tuning parameters" [1] "Starting the cross-validation procedure:" [1] "Fold" "1" "is completed" [1] "Fold" "2" "is completed" > air.pred=pred.hd(air.cv, list(air[[2]][1:2,])) > predict.error=mean((air.pred-air[[1]][1:2,])^2) > print(c("predict error=", predict.error)) [1] "predict error=" "0.00753042844846937" > > > > > > cleanEx() > nameEx("cv.msof") > ### * cv.msof > > flush(stderr()); flush(stdout()) > > ### Name: cv.msof > ### Title: Cross-validation for linear multivariate scalar-on-function > ### regression > ### Aliases: cv.msof > > ### ** Examples > > > ######################################################################### > # Example: multiple scalar-on-function regression > ######################################################################### > > > ptm <- proc.time() > library(FRegSigCom) > data(corn) > X=corn$X > Y=corn$Y > ntrain=60 # in paper, we use 80 observations as training data > xtrange=c(0,1) # the range of t in x(t). > t.x.list=list(seq(0,1,length.out=ncol(X))) > train.index=sample(1:nrow(X), ntrain) > X.train <- X.test <- list() > X.train[[1]]=X[train.index,] > X.test[[1]]=X[-(train.index),] > Y.train <- Y[train.index,] > Y.test <- Y[-(train.index),] > > fit.cv.1=cv.msof(X.train, Y.train, t.x.list)# the cv procedure for our method > Y.pred=pred.msof(fit.cv.1, X.test) # make prediction on the test data > > pred.error=mean((Y.pred-Y.test)^2) > print(c("pred.error=",pred.error)) [1] "pred.error=" "0.180937682650852" > > print(proc.time()-ptm) user system elapsed 11.215 0.020 14.392 > > > > > cleanEx() > nameEx("cv.msof.hd") > ### * cv.msof.hd > > flush(stderr()); flush(stdout()) > > ### Name: cv.msof.hd > ### Title: Cross-validation for high dimensional linear multivariate > ### scalar-on-function regression > ### Aliases: cv.msof.hd > > ### ** Examples > > > > ######################################################################### > # Example: > ######################################################################### > > #toy example > > ptm <- proc.time() > library(FRegSigCom) > data(air) > Y=matrix(0, nrow(air[[1]]), 3) > Y[,1]=apply(air[[1]][,1:8],1,mean) > Y[,2]=apply(air[[1]][,(1:8)+8],1,mean) > Y[,3]=apply(air[[1]][,(1:8)+16],1,mean) > > X=list() > for(i in 1:(length(air)-1)) + { + X[[i]]=air[[i+1]] + } > > ntrain=100 # in paper, we use 80 observations as training data > t.x=seq(0,1,length.out=ncol(X[[1]])) > train.index=sample(1:nrow(X[[1]]), ntrain) > X.train <- X.test <- list() > t.x.list=list() > for(i in 1:length(X)) + { + t.x.list[[i]]=t.x + X.train[[i]]=X[[i]][train.index,] + X.test[[i]]=X[[i]][-(train.index),] + } > Y.train <- Y[train.index,] > Y.test <- Y[-(train.index),] > > fit.cv=cv.msof.hd(X.train, Y.train, t.x.list, upper.comp=5) CV for eta, tau, lambda= 1e-06 0.1 0.1 ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB81AED: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:75) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB56FB: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1846) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB570A: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB570A: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB5725: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB5725: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBADB9A: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:198) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD27B: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:212) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD281: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:220) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4141: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA41CB: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA433E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA4391: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA43EE: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4141: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA41CB: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA433E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA4391: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA43EE: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB81ED7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:89) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82031: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:106) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB43040: Eigen::LLT, 1>& Eigen::LLT, 1>::compute, 0, Eigen::Stride<0, 0> > >(Eigen::EigenBase, 0, Eigen::Stride<0, 0> > > const&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:444) ==27979== by 0x1DB82CE7: LLT > > (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:100) ==27979== by 0x1DB82CE7: llt (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:526) ==27979== by 0x1DB82CE7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:139) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB42546: long Eigen::internal::llt_inplace::unblocked, -1, -1, false> >(Eigen::Block, -1, -1, false>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:322) ==27979== by 0x1DB429B4: long Eigen::internal::llt_inplace::blocked >(Eigen::Matrix&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356) ==27979== by 0x1DB430BD: inplace_decomposition (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401) ==27979== by 0x1DB430BD: Eigen::LLT, 1>& Eigen::LLT, 1>::compute, 0, Eigen::Stride<0, 0> > >(Eigen::EigenBase, 0, Eigen::Stride<0, 0> > > const&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449) ==27979== by 0x1DB82CE7: LLT > > (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:100) ==27979== by 0x1DB82CE7: llt (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:526) ==27979== by 0x1DB82CE7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:139) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB42558: long Eigen::internal::llt_inplace::unblocked, -1, -1, false> >(Eigen::Block, -1, -1, false>&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:324) ==27979== by 0x1DB429B4: long Eigen::internal::llt_inplace::blocked >(Eigen::Matrix&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:356) ==27979== by 0x1DB430BD: inplace_decomposition (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:401) ==27979== by 0x1DB430BD: Eigen::LLT, 1>& Eigen::LLT, 1>::compute, 0, Eigen::Stride<0, 0> > >(Eigen::EigenBase, 0, Eigen::Stride<0, 0> > > const&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:449) ==27979== by 0x1DB82CE7: LLT > > (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:100) ==27979== by 0x1DB82CE7: llt (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:526) ==27979== by 0x1DB82CE7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:139) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82E86: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:140) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB56FB: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1846) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB570A: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB570A: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB5725: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB5725: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBADB9A: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:198) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD27B: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:212) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4141: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA41CB: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA433E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA4391: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA43EE: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB83431: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:179) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB835F9: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:106) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB85360: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:346) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB56FB: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1846) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB570A: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB570A: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB5725: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB5725: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBADB9A: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:198) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD27B: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:212) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4141: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA41CB: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA433E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA4391: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA43EE: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB85BA5: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:370) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB81AED: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:75) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB81ED7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:89) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82031: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:106) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB43040: Eigen::LLT, 1>& Eigen::LLT, 1>::compute, 0, Eigen::Stride<0, 0> > >(Eigen::EigenBase, 0, Eigen::Stride<0, 0> > > const&) (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:444) ==27979== by 0x1DB82CE7: LLT > > (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:100) ==27979== by 0x1DB82CE7: llt (R-devel/site-library/RcppEigen/include/Eigen/src/Cholesky/LLT.h:526) ==27979== by 0x1DB82CE7: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:139) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82E86: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:140) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB83431: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:179) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB835F9: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:106) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB85360: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:346) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD281: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:220) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB816EF: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:65) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB89CEA: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:559) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== CV for eta, tau, lambda= 1e-06 1 0.2 ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD281: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:220) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB830A3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:165) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== CV for eta, tau, lambda= 1e-06 10 0.3 CV for eta, tau, lambda= 1e-06 100 0.4 ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82EB3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:142) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82EC4: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:144) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB839E2: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:195) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB56FB: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1846) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB570A: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB570A: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBADB9A: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:198) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD27B: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:212) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBAD281: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:220) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DBAD457: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:234) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4141: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA41CB: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA433E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BA4391: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA43EE: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB883F: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8849: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8880: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB83EC0: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:225) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB82EB3: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:142) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB839E2: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:195) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DB83A02: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:197) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBB5725: __unguarded_linear_insert > > (/usr/include/c++/9/bits/stl_algo.h:1827) ==27979== by 0x1DBB5725: void std::__insertion_sort > >(double*, double*, __gnu_cxx::__ops::_Iter_comp_iter >) (/usr/include/c++/9/bits/stl_algo.h:1854) ==27979== by 0x1DBADBDA: __final_insertion_sort > > (/usr/include/c++/9/bits/stl_algo.h:1889) ==27979== by 0x1DBADBDA: __sort > > (/usr/include/c++/9/bits/stl_algo.h:1970) ==27979== by 0x1DBADBDA: sort > (/usr/include/c++/9/bits/stl_algo.h:4899) ==27979== by 0x1DBADBDA: basic_max(Eigen::Matrix, double) (packages/tests-vg/FRegSigCom/src/common_function.cpp:192) ==27979== by 0x1DB7C536: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:24) ==27979== by 0x1DB83B6E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:215) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== ==27979== More than 100 errors detected. Subsequent errors ==27979== will still be recorded, but in less detail than before. CV for eta, tau, lambda= 0.001 0.1 0.1 ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA442E: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA4736: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA473F: __ieee754_pow_sse2 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BB8817: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BB8858: pow@@GLIBC_2.29 (in /usr/lib64/libm-2.29.so) ==27979== by 0x1DB7C72D: maxLinearH(Eigen::Matrix, int, int, int, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:28) ==27979== by 0x1DB81BF1: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:80) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== CV for eta, tau, lambda= 0.001 1 0.2 CV for eta, tau, lambda= 0.001 10 0.3 CV for eta, tau, lambda= 0.001 100 0.4 CV for eta, tau, lambda= 1 0.1 0.1 CV for eta, tau, lambda= 1 1 0.2 CV for eta, tau, lambda= 1 10 0.3 CV for eta, tau, lambda= 1 100 0.4 > # in practice, use the default values (or larger) for > # "upper.comp" and "n.basis". > > Y.pred=pred.msof.hd(fit.cv, X.test) ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D0C60: bcStackScalarReal (svn/R-devel/src/main/eval.c:4276) ==27979== by 0x4D0C60: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D8BFD: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D8C2B: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D8C35: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D8C75: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4D8C7B: bcEval (svn/R-devel/src/main/eval.c:7654) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x425E03: R_compact_intrange (svn/R-devel/src/main/altclasses.c:573) ==27979== by 0x4DD187: seq_int (svn/R-devel/src/main/eval.c:4098) ==27979== by 0x4DD187: GETSTACK_PTR_TAG (svn/R-devel/src/main/eval.c:4141) ==27979== by 0x4DD187: bcEval (svn/R-devel/src/main/eval.c:7028) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x425E1C: R_compact_intrange (svn/R-devel/src/main/altclasses.c:575) ==27979== by 0x4DD187: seq_int (svn/R-devel/src/main/eval.c:4098) ==27979== by 0x4DD187: GETSTACK_PTR_TAG (svn/R-devel/src/main/eval.c:4141) ==27979== by 0x4DD187: bcEval (svn/R-devel/src/main/eval.c:7028) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x425E3D: R_compact_intrange (svn/R-devel/src/main/altclasses.c:578) ==27979== by 0x4DD187: seq_int (svn/R-devel/src/main/eval.c:4098) ==27979== by 0x4DD187: GETSTACK_PTR_TAG (svn/R-devel/src/main/eval.c:4141) ==27979== by 0x4DD187: bcEval (svn/R-devel/src/main/eval.c:7028) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4248BB: new_compact_intseq (svn/R-devel/src/main/altclasses.c:318) ==27979== by 0x4DD187: seq_int (svn/R-devel/src/main/eval.c:4098) ==27979== by 0x4DD187: GETSTACK_PTR_TAG (svn/R-devel/src/main/eval.c:4141) ==27979== by 0x4DD187: bcEval (svn/R-devel/src/main/eval.c:7028) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4ED703: Rf_eval (svn/R-devel/src/main/eval.c:846) ==27979== by 0x4F2081: do_set (svn/R-devel/src/main/eval.c:2960) ==27979== by 0x4ED984: Rf_eval (svn/R-devel/src/main/eval.c:798) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:264) ==27979== by 0x51DD6C: Rf_ReplIteration (svn/R-devel/src/main/main.c:200) ==27979== by 0x51E0A7: R_ReplConsole (svn/R-devel/src/main/main.c:314) ==27979== by 0x51E134: run_Rmainloop (svn/R-devel/src/main/main.c:1113) ==27979== by 0x417717: main (svn/R-devel/src/main/Rmain.c:29) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB88FF6: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:541) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== > pred.error=mean((Y.pred-Y.test)^2) ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x5A896A: real_mean (svn/R-devel/src/main/summary.c:485) ==27979== by 0x5AA00C: do_summary (svn/R-devel/src/main/summary.c:528) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== by 0x4D2815: bcEval (svn/R-devel/src/main/eval.c:7117) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== > print(c("pred.error=",pred.error)) ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F8319: Rf_formatReal (svn/R-devel/src/main/format.c:444) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7803: scientific.isra.0 (svn/R-devel/src/main/format.c:322) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7805: scientific.isra.0 (svn/R-devel/src/main/format.c:322) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7836: scientific.isra.0 (svn/R-devel/src/main/format.c:328) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4B8816C: log10 (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA3FF6: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BA403F: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4C0CF6C: __ieee754_log_avx (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BA4097: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4C0CF7B: __ieee754_log_avx (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BA4097: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4C0CFF8: __ieee754_log_avx (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BA4097: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4C0D001: __ieee754_log_avx (in /usr/lib64/libm-2.29.so) ==27979== by 0x4BA4097: __log10_finite (in /usr/lib64/libm-2.29.so) ==27979== by 0x4F785B: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7885: scientific.isra.0 (svn/R-devel/src/main/format.c:338) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F78B4: scientific.isra.0 (svn/R-devel/src/main/format.c:342) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F78BD: scientific.isra.0 (svn/R-devel/src/main/format.c:343) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7B3A: scientific.isra.0 (svn/R-devel/src/main/format.c:343) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4F7B4D: scientific.isra.0 (svn/R-devel/src/main/format.c:343) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F78E4: scientific.isra.0 (svn/R-devel/src/main/format.c:355) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7973: scientific.isra.0 (svn/R-devel/src/main/format.c:390) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F79A8: scientific.isra.0 (svn/R-devel/src/main/format.c:390) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F7948: scientific.isra.0 (svn/R-devel/src/main/format.c:390) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F79CC: scientific.isra.0 (svn/R-devel/src/main/format.c:413) ==27979== by 0x4F8333: Rf_formatReal (svn/R-devel/src/main/format.c:450) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F84B9: Rf_formatReal (svn/R-devel/src/main/format.c:479) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F840B: Rf_formatReal (svn/R-devel/src/main/format.c:490) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4F84DC: Rf_formatReal (svn/R-devel/src/main/format.c:492) ==27979== by 0x55A9CD: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:279) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x433E29: R_IsNA (svn/R-devel/src/main/arithmetic.c:122) ==27979== by 0x55A9D8: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:280) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55AA1A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:226) ==27979== by 0x55AA1A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== by 0x53172B: do_standardGeneric (svn/R-devel/src/main/objects.c:1285) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55AA20: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:226) ==27979== by 0x55AA20: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== by 0x53172B: do_standardGeneric (svn/R-devel/src/main/objects.c:1285) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55AB38: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:227) ==27979== by 0x55AB38: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== by 0x53172B: do_standardGeneric (svn/R-devel/src/main/objects.c:1285) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x54024E7: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5410D53: __vsprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0517: sprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA5A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:244) ==27979== by 0x55AA5A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EA57B: _itoa_word (in /usr/lib64/libc-2.29.so) ==27979== by 0x54020C7: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5410D53: __vsprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0517: sprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA5A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:244) ==27979== by 0x55AA5A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EA58D: _itoa_word (in /usr/lib64/libc-2.29.so) ==27979== by 0x54020C7: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5410D53: __vsprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0517: sprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA5A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:244) ==27979== by 0x55AA5A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x54025B4: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5410D53: __vsprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0517: sprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA5A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:244) ==27979== by 0x55AA5A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x540223B: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5410D53: __vsprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0517: sprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA5A: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:244) ==27979== by 0x55AA5A: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EADC8: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EADE2: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53E6DB4: __mpn_extract_double (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EB74E: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB115: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB138: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EB9A3: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB16B: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB18E: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EB190: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB1BC: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB1DF: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EB1E1: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EB1FF: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC24D: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EC51F: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E581C: __mpn_lshift (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC523: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E581F: __mpn_lshift (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC523: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EC560: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC627: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC61A: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5EB8: __mpn_mul_1 (in /usr/lib64/libc-2.29.so) ==27979== by 0x53E5CC8: __mpn_mul (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC665: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5F43: __mpn_mul_1 (in /usr/lib64/libc-2.29.so) ==27979== by 0x53E5CC8: __mpn_mul (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC665: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5FB2: __mpn_mul_1 (in /usr/lib64/libc-2.29.so) ==27979== by 0x53E5CC8: __mpn_mul (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC665: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5CD5: __mpn_mul (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EC665: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC5A4: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EC5D7: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC5F2: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC5FE: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EC6AE: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC6B4: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53ED1FA: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53ED216: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E593C: __mpn_rshift (in /usr/lib64/libc-2.29.so) ==27979== by 0x53ED228: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5961: __mpn_rshift (in /usr/lib64/libc-2.29.so) ==27979== by 0x53ED228: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53ECBFC: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EA731: hack_digit (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EB6FC: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5EB8: __mpn_mul_1 (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EA738: hack_digit (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EB6FC: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53E5EDC: __mpn_mul_1 (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EA738: hack_digit (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EB6FC: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBA43: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x53EA731: hack_digit (in /usr/lib64/libc-2.29.so) ==27979== by 0x53EBA56: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBA6E: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBAE2: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBAE7: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC141: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC16B: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EC1AF: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBD35: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBF95: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53EBF7B: __printf_fp_l (in /usr/lib64/libc-2.29.so) ==27979== by 0x5402379: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x54172C9: __vsnprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x53F0445: snprintf (in /usr/lib64/libc-2.29.so) ==27979== by 0x55AA78: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:245) ==27979== by 0x55AA78: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55AAD5: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:253) ==27979== by 0x55AAD5: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== by 0x53172B: do_standardGeneric (svn/R-devel/src/main/objects.c:1285) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55AADA: EncodeRealDrop0 (svn/R-devel/src/main/printutils.c:256) ==27979== by 0x55AADA: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== by 0x53172B: do_standardGeneric (svn/R-devel/src/main/objects.c:1285) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x483BC58: __strlen_sse2 (/builddir/build/BUILD/valgrind-3.15.0/memcheck/../shared/vg_replace_strmem.c:463) ==27979== by 0x4BCC18: Rf_mkChar (svn/R-devel/src/main/envir.c:3894) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BC540: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4010) ==27979== by 0x4BC540: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x4BC556: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4013) ==27979== by 0x4BC556: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BC5D0: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4043) ==27979== by 0x4BC5D0: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x4BC7A6: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4076) ==27979== by 0x4BC7A6: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== by 0x487FAF1: R_dispatchGeneric (svn/R-devel/src/library/methods/src/methods_list_dispatch.c:1001) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x522899: SET_VECTOR_ELT (svn/R-devel/src/main/memory.c:3993) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4081) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x5228AB: SET_VECTOR_ELT (svn/R-devel/src/main/memory.c:3993) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4081) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x5228CD: SET_VECTOR_ELT (svn/R-devel/src/main/memory.c:3996) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4081) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x522977: SET_VECTOR_ELT (svn/R-devel/src/main/memory.c:3998) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:4081) ==27979== by 0x4BC7D5: Rf_mkCharLenCE (svn/R-devel/src/main/envir.c:3991) ==27979== by 0x55AB13: Rf_StringFromReal (svn/R-devel/src/main/printutils.c:281) ==27979== by 0x424D4A: ExpandDeferredStringElt (svn/R-devel/src/main/altclasses.c:725) ==27979== by 0x424D4A: deferred_string_Elt (svn/R-devel/src/main/altclasses.c:775) ==27979== by 0x4281A4: ALTSTRING_ELT (svn/R-devel/src/main/altrep.c:501) ==27979== by 0x44EDBE: STRING_ELT (svn/R-devel/src/include/Rinlinedfuns.h:461) ==27979== by 0x44EDBE: StringAnswer (svn/R-devel/src/main/bind.c:255) ==27979== by 0x44EDEE: StringAnswer (svn/R-devel/src/main/bind.c:243) ==27979== by 0x453867: do_c_dflt (svn/R-devel/src/main/bind.c:850) ==27979== by 0x4539A4: do_c (svn/R-devel/src/main/bind.c:780) ==27979== by 0x4EDAE3: Rf_eval (svn/R-devel/src/main/eval.c:830) ==27979== by 0x4EDE6F: forcePromise (svn/R-devel/src/main/eval.c:551) ==27979== by 0x4ED7DA: Rf_eval (svn/R-devel/src/main/eval.c:746) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== [1]==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x483BC58: __strlen_sse2 (/builddir/build/BUILD/valgrind-3.15.0/memcheck/../shared/vg_replace_strmem.c:463) ==27979== by 0x55B3E2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3E2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x53C6B19: __gconv_transform_utf8_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x5442AC2: mbrtowc (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B07E: Rstrwid (svn/R-devel/src/main/printutils.c:411) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x5442B0B: mbrtowc (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B07E: Rstrwid (svn/R-devel/src/main/printutils.c:411) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B096: Rstrwid (svn/R-devel/src/main/printutils.c:417) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x549CA5A: iswprint (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B13E: Rstrwid (svn/R-devel/src/main/printutils.c:417) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x549CAD5: iswprint (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B13E: Rstrwid (svn/R-devel/src/main/printutils.c:417) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B14E: Rstrwid (svn/R-devel/src/main/printutils.c:418) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B154: Rstrwid (svn/R-devel/src/main/printutils.c:418) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B15D: Rstrwid (svn/R-devel/src/main/printutils.c:418) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B162: Rstrwid (svn/R-devel/src/main/printutils.c:418) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:511) ==27979== by 0x55B3F2: Rstrlen (svn/R-devel/src/main/printutils.c:504) ==27979== by 0x4F7BF7: Rf_formatString (svn/R-devel/src/main/format.c:80) ==27979== by 0x558878: printStringVector (svn/R-devel/src/main/printvector.c:239) ==27979== by 0x558878: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== "pred.error=" ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x5442B0B: mbrtowc (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B8F0: Rf_EncodeString (svn/R-devel/src/main/printutils.c:651) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B90D: Rf_EncodeString (svn/R-devel/src/main/printutils.c:659) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x549CA5A: iswprint (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B927: Rf_EncodeString (svn/R-devel/src/main/printutils.c:659) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Use of uninitialised value of size 8 ==27979== at 0x549CAD5: iswprint (in /usr/lib64/libc-2.29.so) ==27979== by 0x55B927: Rf_EncodeString (svn/R-devel/src/main/printutils.c:659) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B933: Rf_EncodeString (svn/R-devel/src/main/printutils.c:660) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B939: Rf_EncodeString (svn/R-devel/src/main/printutils.c:660) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B942: Rf_EncodeString (svn/R-devel/src/main/printutils.c:660) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x55B947: Rf_EncodeString (svn/R-devel/src/main/printutils.c:660) ==27979== by 0x5588A9: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588A9: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x52F238: dispatchMethod.isra.0 (svn/R-devel/src/main/objects.c:436) ==27979== by 0x52F5F2: Rf_usemethod (svn/R-devel/src/main/objects.c:486) ==27979== by 0x52F9A4: do_usemethod (svn/R-devel/src/main/objects.c:565) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x483BC58: __strlen_sse2 (/builddir/build/BUILD/valgrind-3.15.0/memcheck/../shared/vg_replace_strmem.c:463) ==27979== by 0x5402C4A: printf_positional (in /usr/lib64/libc-2.29.so) ==27979== by 0x5403C3F: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x472CB7: stdout_vfprintf (svn/R-devel/src/main/connections.c:2647) ==27979== by 0x55C48A: Rvprintf (svn/R-devel/src/main/printutils.c:936) ==27979== by 0x55C55B: Rprintf (svn/R-devel/src/main/printutils.c:853) ==27979== by 0x5588C3: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588C3: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== ==27979== Syscall param write(buf) points to uninitialised byte(s) ==27979== at 0x548A1E8: write (in /usr/lib64/libc-2.29.so) ==27979== by 0x541A08C: _IO_file_write@@GLIBC_2.2.5 (in /usr/lib64/libc-2.29.so) ==27979== by 0x54193E5: new_do_write (in /usr/lib64/libc-2.29.so) ==27979== by 0x541B148: _IO_do_write@@GLIBC_2.2.5 (in /usr/lib64/libc-2.29.so) ==27979== by 0x5419217: _IO_file_sync@@GLIBC_2.2.5 (in /usr/lib64/libc-2.29.so) ==27979== by 0x540E51D: fflush (in /usr/lib64/libc-2.29.so) ==27979== by 0x55C493: Rvprintf (svn/R-devel/src/main/printutils.c:938) ==27979== by 0x55C55B: Rprintf (svn/R-devel/src/main/printutils.c:853) ==27979== by 0x5588C3: printStringVector (svn/R-devel/src/main/printvector.c:245) ==27979== by 0x5588C3: printStringVectorS (svn/R-devel/src/main/printvector.c:264) ==27979== by 0x559752: Rf_printVector (svn/R-devel/src/main/printvector.c:338) ==27979== by 0x552960: Rf_PrintValueRec (svn/R-devel/src/main/print.c:915) ==27979== by 0x552FE2: do_printdefault (svn/R-devel/src/main/print.c:313) ==27979== Address 0xfc0f0a5 is 5 bytes inside a block of size 4,096 alloc'd ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x540DF13: _IO_file_doallocate (in /usr/lib64/libc-2.29.so) ==27979== by 0x541C2FF: _IO_doallocbuf (in /usr/lib64/libc-2.29.so) ==27979== by 0x541B5B7: _IO_file_overflow@@GLIBC_2.2.5 (in /usr/lib64/libc-2.29.so) ==27979== by 0x541A735: _IO_file_xsputn@@GLIBC_2.2.5 (in /usr/lib64/libc-2.29.so) ==27979== by 0x54037D4: __vfprintf_internal (in /usr/lib64/libc-2.29.so) ==27979== by 0x472CB7: stdout_vfprintf (svn/R-devel/src/main/connections.c:2647) ==27979== by 0x55C48A: Rvprintf (svn/R-devel/src/main/printutils.c:936) ==27979== by 0x55C55B: Rprintf (svn/R-devel/src/main/printutils.c:853) ==27979== by 0x5C1112: Rf_PrintGreeting (svn/R-devel/src/main/version.c:33) ==27979== by 0x51CC8C: setup_Rmainloop (svn/R-devel/src/main/main.c:1001) ==27979== by 0x51E188: Rf_mainloop (svn/R-devel/src/main/main.c:1119) ==27979== Uninitialised value was created by a heap allocation ==27979== at 0x483880B: malloc (/builddir/build/BUILD/valgrind-3.15.0/coregrind/m_replacemalloc/vg_replace_malloc.c:309) ==27979== by 0x1DB39CA8: Eigen::internal::aligned_malloc(unsigned long) (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:159) ==27979== by 0x1DB8441E: conditional_aligned_malloc (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:214) ==27979== by 0x1DB8441E: conditional_aligned_new_auto (R-devel/site-library/RcppEigen/include/Eigen/src/Core/util/Memory.h:374) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/DenseStorage.h:557) ==27979== by 0x1DB8441E: resize (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:319) ==27979== by 0x1DB8441E: _init1 (R-devel/site-library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:780) ==27979== by 0x1DB8441E: Matrix (R-devel/site-library/RcppEigen/include/Eigen/src/Core/Matrix.h:294) ==27979== by 0x1DB8441E: constOptOrth_H(Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, int, int, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:56) ==27979== by 0x1DB854B4: get_comp(Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, int, int, int, int, double, double, double, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:350) ==27979== by 0x1DB886F7: cv_hd_msof(Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, int, double) (packages/tests-vg/FRegSigCom/src/c_hd_mf.cpp:502) ==27979== by 0x1DB110CB: _FRegSigCom_cv_hd_msof (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:196) ==27979== by 0x49C471: R_doDotCall (svn/R-devel/src/main/dotcode.c:624) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== "0.01605098607934" > > print(proc.time()-ptm) user system elapsed 162.651 0.760 224.521 > > > > > > cleanEx() > nameEx("cv.nonlinear") > ### * cv.nonlinear > > flush(stderr()); flush(stdout()) > > ### Name: cv.nonlinear > ### Title: Cross-validation for nonlinear function-on-function regression > ### Aliases: cv.nonlinear > > ### ** Examples > > > ################################################################################# > # Example: Nonlinear function-on-function model > ############################################################################### > > ptm <- proc.time() > library(FRegSigCom) > library(refund) > data(DTI) > I=which(is.na(apply(DTI$cca,1,mean))) > X=DTI$cca[-I,] # functional response > Y=DTI$rcst[-I,-(1:12)] #functional predictor > t.x <- list(seq(0,1,length=dim(X)[2])) > t.y <- seq(0,1,length=dim(Y)[2]) > # randomly split all the observations into a training set with 200 observations > # and a test set. > train.id=sample(1:nrow(Y), 30) > X.train.list <- list(X[train.id,]) > Y.train <- Y[train.id, ] > X.test.list <- list(X[-(train.id),]) > Y.test <- Y[-(train.id), ] > fit.cv=cv.nonlinear(X.train.list, Y.train, t.x, t.y, upper.comp=3, + s.n.basis=20, x.n.basis=20,t.n.basis=20) > # in practice, use the default values (or larger) for > # "upper.comp", "s.n.basis","x.n.basis", and "t.n.basis". > Y.pred=pred.nonlinear(fit.cv, X.test.list) > nonlinear.error= mean((Y.pred-Y.test)^2) > print(c("prediction error=",nonlinear.error)) [1] "prediction error=" "0.00440403056928026" > print(proc.time()-ptm) user system elapsed 34.401 0.141 48.374 > > > > cleanEx() detaching ‘package:refund’ > nameEx("cv.sigcom") > ### * cv.sigcom > > flush(stderr()); flush(stdout()) > > ### Name: cv.sigcom > ### Title: Cross-validation for linear function-on-function regression > ### Aliases: cv.sigcom > > ### ** Examples > > ######################################################################### > # Example 1: linear function-on-function regresion with one predictor > # curve and two scalar predictors > ######################################################################### > ptm <- proc.time() > library(FRegSigCom) > library(refund) > data(DTI) > tmp=1*(DTI$sex=="male") > Z.0=cbind(DTI$case, tmp) > > I=which(is.na(apply(DTI$cca,1,mean))) > Y=DTI$cca[-I,] # functional response > X=list(DTI$rcst[-I,-(1:12)]) #functional predictor > Z=Z.0[-I,] # scalar predictor > > t.x <- list(seq(0,1,length=dim(X[[1]])[2])) > t.y <- seq(0,1,length=dim(Y)[2]) > # randomly split all the observations into a training set with 200 observations > # and a test set. > train.id=sample(1:nrow(Y), 100) > X.train <- list(X[[1]][train.id,]) > Y.train <- Y[train.id, ] > Z.train <- Z[train.id, ] > X.test <- list(X[[1]][-(train.id),]) > Y.test <- Y[-(train.id), ] > Z.test <- Z[-(train.id), ] > fit.cv=cv.sigcom(X.train, Y.train, t.x, t.y, Z=Z.train) > Y.pred=pred.sigcom(fit.cv, X.test, Z.test=Z.test) > error<- mean((Y.pred-Y.test)^2) > print(c(" prediction error=", error)) [1] " prediction error=" "0.0033154064211698" > coef.est.list=getcoef.sigcom(fit.cv) > mu.est=coef.est.list[[1]] # intercept curve > beta.est=coef.est.list[[2]] # coefficient functions of functional predictors > gamma.est=coef.est.list[[3]] # coefficient functions of scalar predictors > print(proc.time()-ptm) user system elapsed 192.327 0.489 296.584 > > > > ######################################################################### > # Example 2: linear function-on-function regresion with four predictor curves > ######################################################################### > > > ptm <- proc.time() > library(FRegSigCom) > data(ocean) > Y=ocean[[1]] > Y.train=Y[1:80,] > Y.test=Y[-(1:80),] > t.y=seq(0,1, length.out = ncol(Y)) > X.list=list() > X.train.list=list() > X.test.list=list() > t.x.list=list() > for(i in 1:4) + { + X.list[[i]]=ocean[[i+1]] + X.train.list[[i]]=X.list[[i]][1:80,] + X.test.list[[i]]=X.list[[i]][-(1:80),] + t.x.list[[i]]=seq(0,1, length.out = ncol(X.list[[i]])) + } > fit.cv=cv.sigcom(X.train.list, Y.train, t.x.list, t.y) > Y.pred=pred.sigcom(fit.cv, X.test.list) > error<- mean((Y.pred-Y.test)^2) > print(c(" prediction error=", error)) [1] " prediction error=" "0.000407881907803168" > coef.list=getcoef.sigcom(fit.cv) > mu.est=coef.list[[1]] # intercept curve > beta.est=coef.list[[2]] # coefficient functions of functional predictors > print(proc.time()-ptm) user system elapsed 45.164 0.276 85.242 > > > > cleanEx() detaching ‘package:refund’ > nameEx("cv.sof.spike") > ### * cv.sof.spike > > flush(stderr()); flush(stdout()) > > ### Name: cv.sof.spike > ### Title: Cross-validation for linear scalar-on-function regression for > ### highly densely observed spiky functional data > ### Aliases: cv.sof.spike > > ### ** Examples > > > > ########################################################################## > # Example: scalar-on-function for highly-densely observed curves > ########################################################################## > > > ptm <- proc.time() > library(FRegSigCom) > data(Pork) > X=Pork$X > Y=Pork$Y > ntrain=40 # in paper, we use 80 observations as training data > xtrange=c(0,1) # the range of t in x(t). > t.x.list=list(seq(0,1,length.out=dim(X)[2])) > train.index=sample(1:dim(X)[1], ntrain) > X.train <- X.test <- list() > > X.train[[1]]=X[train.index,] > X.test[[1]]=X[-(train.index),] > Y.train <- Y[train.index] > Y.test <- Y[-(train.index)] > > fit.cv=cv.sof.spike(X.train, Y.train, t.x.list) ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBA6211: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:308) ==27979== by 0x1DB1461E: _FRegSigCom_c_cv_spiky_scalar_on_function (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:278) ==27979== by 0x49C4D7: R_doDotCall (svn/R-devel/src/main/dotcode.c:610) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a stack allocation ==27979== at 0x1DBA483A: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:227) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBA6230: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:308) ==27979== by 0x1DB1461E: _FRegSigCom_c_cv_spiky_scalar_on_function (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:278) ==27979== by 0x49C4D7: R_doDotCall (svn/R-devel/src/main/dotcode.c:610) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a stack allocation ==27979== at 0x1DBA483A: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:227) ==27979== ==27979== Conditional jump or move depends on uninitialised value(s) ==27979== at 0x1DBA78B8: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:322) ==27979== by 0x1DB1461E: _FRegSigCom_c_cv_spiky_scalar_on_function (packages/tests-vg/FRegSigCom/src/RcppExports.cpp:278) ==27979== by 0x49C4D7: R_doDotCall (svn/R-devel/src/main/dotcode.c:610) ==27979== by 0x49C9F3: do_dotcall (svn/R-devel/src/main/dotcode.c:1281) ==27979== by 0x4D2B72: bcEval (svn/R-devel/src/main/eval.c:7097) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== by 0x4DB685: bcEval (svn/R-devel/src/main/eval.c:7065) ==27979== by 0x4ED537: Rf_eval (svn/R-devel/src/main/eval.c:723) ==27979== by 0x4EF116: R_execClosure (svn/R-devel/src/main/eval.c:1888) ==27979== by 0x4EFEF3: Rf_applyClosure (svn/R-devel/src/main/eval.c:1814) ==27979== Uninitialised value was created by a stack allocation ==27979== at 0x1DBA483A: c_cv_spiky_scalar_on_function(Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>, Eigen::Matrix, Rcpp::Vector<19, Rcpp::PreserveStorage>, Rcpp::Vector<19, Rcpp::PreserveStorage>) (packages/tests-vg/FRegSigCom/src/c_spiky_scalar_on_function.cpp:227) ==27979== > Y.pred=pred.sof.spike(fit.cv, X.test) > pred.error=mean((Y.pred-Y.test)^2) > > print(c("pred.error=",pred.error)) [1] "pred.error=" "0.384351068876862" > > print(proc.time()-ptm) user system elapsed 202.677 0.461 240.233 > > > > > > cleanEx() > nameEx("getcoef.ff.interaction") > ### * getcoef.ff.interaction > > flush(stderr()); flush(stdout()) > > ### Name: getcoef.ff.interaction > ### Title: Get the estimated coefficient functions for function-on-function > ### interaction model > ### Aliases: getcoef.ff.interaction > > ### ** Examples > #See the examples in cv.ff.interaction() and step.ff.interaction(). > > > cleanEx() > nameEx("getcoef.hd") > ### * getcoef.hd > > flush(stderr()); flush(stdout()) > > ### Name: getcoef.hd > ### Title: Get the estimated coefficient functions for linear > ### function-on-function models with a large numbe of predictor curves > ### Aliases: getcoef.hd > > ### ** Examples > #See the examples in cv.hd(). > > > cleanEx() > nameEx("getcoef.nonlinear") > ### * getcoef.nonlinear > > flush(stderr()); flush(stdout()) > > ### Name: getcoef.nonlinear > ### Title: Get the estimated intercept and nonlinear functions in nonlinear > ### function-on-function model > ### Aliases: getcoef.nonlinear > > ### ** Examples > #See the examples in cv.nonlinear(). > > > > cleanEx() > nameEx("getcoef.sigcom") > ### * getcoef.sigcom > > flush(stderr()); flush(stdout()) > > ### Name: getcoef.sigcom > ### Title: Get the estimated intercept and coefficient functions for linear > ### function-on-function models > ### Aliases: getcoef.sigcom > > ### ** Examples > #See the examples in cv.sigcom(). > > > > cleanEx() > nameEx("ocean") > ### * ocean > > flush(stderr()); flush(stdout()) > > ### Name: ocean > ### Title: Hawaii ocean data > ### Aliases: ocean > > ### ** Examples > > data(ocean) > str(ocean) List of 5 $ Salinity : num [1:116, 1:101] 35.2 35.1 34.9 34.7 34.9 ... $ Potential.density: num [1:116, 1:101] 23.1 23.7 23.7 22.6 23.1 ... $ Temperature : num [1:116, 1:101] 26.3 24 23.7 26.7 25.7 ... $ Oxygen : num [1:116, 1:101] 224 216 223 199 212 ... $ Chloropigment : num [1:116, 1:101] 0.0208 0.0394 0.0723 0.105 0.2439 ... > > > > cleanEx() > nameEx("pred.ff.interaction") > ### * pred.ff.interaction > > flush(stderr()); flush(stdout()) > > ### Name: pred.ff.interaction > ### Title: Prediction for a linear FOF regression model with two-way > ### interactions > ### Aliases: pred.ff.interaction > > ### ** Examples > #See the examples in cv.ff.interaction() and step.ff.interaction(). > > > cleanEx() > nameEx("pred.fof.spike") > ### * pred.fof.spike > > flush(stderr()); flush(stdout()) > > ### Name: pred.fof.spike > ### Title: Prediction for linear function-on-function regression on highly > ### sensely observed spiky data > ### Aliases: pred.fof.spike > > ### ** Examples > #See the examples in cv.fof.spike(). > > > > cleanEx() > nameEx("pred.fof.wv") > ### * pred.fof.wv > > flush(stderr()); flush(stdout()) > > ### Name: pred.fof.wv > ### Title: Prediction for linear function-on-function regression using > ### signal compression > ### Aliases: pred.fof.wv > > ### ** Examples > #See the examples in cv.fof.wv(). > > > > cleanEx() > nameEx("pred.hd") > ### * pred.hd > > flush(stderr()); flush(stdout()) > > ### Name: pred.hd > ### Title: Prediction for sparse linear function-on-function regression > ### Aliases: pred.hd > > ### ** Examples > #See the examples in cv.hd(). > > > cleanEx() > nameEx("pred.msof") > ### * pred.msof > > flush(stderr()); flush(stdout()) > > ### Name: pred.msof > ### Title: Prediction for linear multivariate scalar-on-function regression > ### Aliases: pred.msof > > ### ** Examples > #See the examples in cv.msof(). > > > cleanEx() > nameEx("pred.msof.hd") > ### * pred.msof.hd > > flush(stderr()); flush(stdout()) > > ### Name: pred.msof.hd > ### Title: Prediction for high dimensional linear multivariate > ### scalar-on-function regression > ### Aliases: pred.msof.hd > > ### ** Examples > #See the examples in cv.msof.hd(). > > > cleanEx() > nameEx("pred.nonlinear") > ### * pred.nonlinear > > flush(stderr()); flush(stdout()) > > ### Name: pred.nonlinear > ### Title: Prediction for nonlinear function-on-function regression > ### Aliases: pred.nonlinear > > ### ** Examples > #See the examples in cv.nonlinear(). > > > cleanEx() > nameEx("pred.sigcom") > ### * pred.sigcom > > flush(stderr()); flush(stdout()) > > ### Name: pred.sigcom > ### Title: Prediction for linear function-on-function regression using > ### signal compression > ### Aliases: pred.sigcom > > ### ** Examples > #See the examples in cv.sigcom(). > > > > cleanEx() > nameEx("pred.sof.spike") > ### * pred.sof.spike > > flush(stderr()); flush(stdout()) > > ### Name: pred.sof.spike > ### Title: Prediction for linear function-on-function regression on highly > ### sensely observed spiky data > ### Aliases: pred.sof.spike > > ### ** Examples > #See the examples in cv.sof.spike(). > > > > cleanEx() > nameEx("step.ff.interaction") > ### * step.ff.interaction > > flush(stderr()); flush(stdout()) > > ### Name: step.ff.interaction > ### Title: Stepwise variable selection procedure for FOF regression models > ### with two-way interactions > ### Aliases: step.ff.interaction > > ### ** Examples > > > library(FRegSigCom) > data(ocean) > > Y=ocean$Salinity > X=list() > X[[1]]=ocean$Potential.density > X[[2]]=ocean$Temperature > X[[3]]=ocean$Oxygen > n.curves=length(X) > ntot=dim(Y)[1] > ntrain=50 > ntest=ntot-ntrain > X.uncent=X > for(i in 1:n.curves){ + X[[i]]=scale(X.uncent[[i]],center=TRUE, scale=FALSE) + } > lengthX=dim(X[[1]])[2] > lengthY=dim(Y)[2] > t.x=seq(0,1,length=lengthX) > t.y=seq(0,1,length=lengthY) > I.train=sample(1:ntot, ntrain) > X.train=list() > X.test=list() > t.x.all=list() > for(j in 1:n.curves){ + X.train[[j]]=X[[j]][I.train,] + X.test[[j]]=X[[j]][-I.train,] + t.x.all[[j]]=t.x + } > Y.train=Y[I.train, ] > Y.test=Y[-I.train, ] > > > ############################### > #model selection > ############################### > > fit.step=step.ff.interaction(X.train, Y.train, t.x.all, t.y) ################################################################## Step 1 ** CV procedure for calculation of CV error** min_cv_error 1e+20 current_cv_error 0.0209361 ** determine effects added or removed from the current model ** the main effecs after this step= 1 2 the interaction effecs after this step is empty! ################################################################## Step 2 ** CV procedure for calculation of CV error** min_cv_error 0.0209361 current_cv_error 0.0156574 ** determine effects added or removed from the current model ** the main effecs after this step= 1 2 the interaction effecs after this step (1,1) ################################################################## Step 3 ** CV procedure for calculation of CV error** min_cv_error 0.0156574 current_cv_error 0.0135722 ** determine effects added or removed from the current model ** the main effecs after this step= 1 2 the interaction effecs after this step is empty! ################################################################## Step 4 ** CV procedure for calculation of CV error** min_cv_error 0.0135722 current_cv_error 0.0156574 ################################################################## finally selected main effecs 1 2 finally selected interation effecs= (1,1) ################################################################## **CV procedure for nonadaptive fitting** **(used to determine the adaptive constants)** > Y.pred=pred.ff.interaction(fit.step, X.test) > error.selected=mean((Y.pred-Y.test)^2) > print(c("error.selected=", error.selected)) [1] "error.selected=" "0.000186852388587699" > #coef.obj=getcoef.ff.interaction(fit.step) > #str(coef.obj) > > > > ### *