Note: the module "R" cannot be unloaded because it was not loaded. WARNING: ignoring environment value of R_HOME R Under development (unstable) (2025-12-14 r89168) -- "Unsuffered Consequences" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu 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. 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-12-15/deps.csv", task.str = "849", release = "/scratch/th798/data.table-revdeps/2025-12-15/data.table_release_1.17.8.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-12-15/data.table_master_1.17.99.4f8695fa560beaa7d7d8034ee41fa6146e2998b5.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/25909589/R-devel/849" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/25909589/R-devel/849/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "mlr" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/25909589/R-devel/849/library" [2] "/projects/genomic-ml/R/R-devel/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-12-15 00:30:35 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/25909589/R-devel/849/library' (as 'lib' is unspecified) also installing the dependencies 'multicool', 'hdrcde', 'ks', 'doBy', 'rainbow', 'pbkrtest', 'lava', 'rgl', 'rlist', 'hardhat', 'ipred', 'cubature', 'fds', 'scales', 'car', 'htmlwidgets', 'miniUI', 'commonmark', 'httpuv', 'later', 'promises', 'cmprsk', 'mets', 'Publish', 'minqa', 'ConsRank', 'ModelMetrics', 'plyr', 'pROC', 'recipes', 'reshape2', 'Rcpp', 'RcppArmadillo', 'ade4', 'np', 'plotmo', 'fda', 'gamboostLSS', 'ggplot2', 'ggrepel', 'rstatix', 'RcppEigen', 'lhs', 'htmlTable', 'spacefillr', 'questionr', 'xfun', 'yaml', 'xmlparsedata', 'shiny', 'prodlim', 'rms', 'riskRegression', 'timereg', 'BWStest', 'gamm4', 'lme4', 'RLRsim', 'grpreg', 'pbs', 'entropy', 's2', 'units', 'maptree', 'RcppRoll', 'ParamHelpers', 'parallelMap', 'adabag', 'brnn', 'bst', 'C50', 'care', 'caret', 'ClusterR', 'clusterSim', 'cmaes', 'crs', 'Cubist', 'deepnet', 'DiceKriging', 'earth', 'emoa', 'evtree', 'fda.usc', 'FDboost', 'forecast', 'frbs', 'FSelectorRcpp', 'ggpubr', 'glmnet', 'GPfit', 'h2o', 'Hmisc', 'irace', 'klaR', 'knitr', 'laGP', 'lintr', 'mco', 'mda', 'mldr', 'mlrMBO', 'mRMRe', 'neuralnet', 'pander', 'party', 'pec', 'penalized', 'PMCMRplus', 'ranger', 'refund', 'rFerns', 'rgenoud', 'rmarkdown', 'Rmpi', 'rotationForest', 'RRF', 'RSNNS', 'rucrdtw', 'sda', 'sf', 'smoof', 'sparseLDA', 'stepPlr', 'survAUC', 'tgp', 'tsfeatures', 'vdiffr', 'wavelets' trying URL 'http://cloud.r-project.org/src/contrib/multicool_1.0.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/hdrcde_3.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ks_1.15.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/doBy_4.7.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rainbow_3.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pbkrtest_0.5.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/lava_1.8.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rgl_1.3.31.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rlist_0.4.6.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/hardhat_1.4.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ipred_0.9-15.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/cubature_2.1.4-1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/fds_1.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/scales_1.4.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/car_3.1-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/htmlwidgets_1.6.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/miniUI_0.1.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/commonmark_2.0.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/httpuv_1.6.16.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/later_1.4.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/promises_1.5.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/cmprsk_2.2-12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mets_1.3.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/Publish_2025.07.24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/minqa_1.2.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ConsRank_2.1.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ModelMetrics_1.2.2.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/plyr_1.8.9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pROC_1.19.0.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/recipes_1.3.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/reshape2_1.4.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/4.6.0/Other/Rcpp_1.1.0.8.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RcppArmadillo_15.2.2-1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ade4_1.7-23.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/np_0.60-18.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/plotmo_3.6.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/fda_6.3.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/gamboostLSS_2.1-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ggplot2_4.0.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ggrepel_0.9.6.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rstatix_0.7.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RcppEigen_0.3.4.0.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/lhs_1.2.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/htmlTable_2.4.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/spacefillr_0.4.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/questionr_0.8.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/xfun_0.54.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/yaml_2.3.12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/xmlparsedata_1.0.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/shiny_1.12.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/prodlim_2025.04.28.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rms_8.1-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/riskRegression_2025.09.17.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/timereg_2.0.7.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/BWStest_0.2.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/gamm4_0.2-7.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/lme4_1.1-38.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RLRsim_3.1-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/grpreg_3.5.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pbs_1.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/entropy_1.3.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/s2_1.1.9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/units_1.0-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/maptree_1.4-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RcppRoll_0.3.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ParamHelpers_1.14.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/parallelMap_1.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/adabag_5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/brnn_0.9.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/bst_0.3-24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/C50_0.2.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/care_1.1.11.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/caret_7.0-1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ClusterR_1.3.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/clusterSim_0.51-5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/cmaes_1.0-12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/crs_0.15-38.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/Cubist_0.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/deepnet_0.2.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/DiceKriging_1.6.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/earth_5.3.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/emoa_0.5-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/evtree_1.0-8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/fda.usc_2.2.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/FDboost_1.1-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/forecast_8.24.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/frbs_3.2-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/FSelectorRcpp_0.3.13.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ggpubr_0.6.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/glmnet_4.1-10.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/GPfit_1.0-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/h2o_3.44.0.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/Hmisc_5.2-4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/irace_4.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/klaR_1.7-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/knitr_1.50.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/laGP_1.5-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/lintr_3.3.0-1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mco_1.17.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mda_0.5-5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mldr_0.4.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlrMBO_1.1.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mRMRe_2.1.2.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/neuralnet_1.44.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pander_0.6.6.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/party_1.3-18.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pec_2025.06.24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/penalized_0.9-53.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/PMCMRplus_1.9.12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ranger_0.17.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/refund_0.1-38.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rFerns_5.0.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rgenoud_5.9-0.11.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rmarkdown_2.30.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/Rmpi_0.7-3.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rotationForest_0.1.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RRF_1.9.4.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RSNNS_0.4-17.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rucrdtw_0.1.6.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/sda_1.3.9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/sf_1.0-23.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/smoof_1.6.0.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/sparseLDA_0.1-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/stepPlr_0.93.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/survAUC_1.4-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/tgp_2.4-23.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/tsfeatures_1.1.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/vdiffr_1.0.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/wavelets_0.3-0.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlr_2.19.3.tar.gz' * installing *source* package 'lava' ... ** this is package 'lava' version '1.8.2' ** package 'lava' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lava) * installing *source* package 'hardhat' ... ** this is package 'hardhat' version '1.4.2' ** package 'hardhat' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so': /projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so: undefined symbol: R_nchar Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'hardhat' * removing '/tmp/th798/25909589/R-devel/849/library/hardhat' * installing *source* package 'scales' ... ** this is package 'scales' version '1.4.0' ** package 'scales' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (scales) * installing *source* package 'commonmark' ... ** this is package 'commonmark' version '2.0.0' ** package 'commonmark' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions.c -o extensions.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrapper.c -o wrapper.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/cmark.c -o cmark/cmark.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/node.c -o cmark/node.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/iterator.c -o cmark/iterator.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/blocks.c -o cmark/blocks.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/inlines.c -o cmark/inlines.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/scanners.c -o cmark/scanners.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/utf8.c -o cmark/utf8.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/buffer.c -o cmark/buffer.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/references.c -o cmark/references.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/render.c -o cmark/render.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/man.c -o cmark/man.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/xml.c -o cmark/xml.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/html.c -o cmark/html.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/commonmark.c -o cmark/commonmark.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/latex.c -o cmark/latex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/houdini_href_e.c -o cmark/houdini_href_e.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/houdini_html_e.c -o cmark/houdini_html_e.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/houdini_html_u.c -o cmark/houdini_html_u.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/cmark_ctype.c -o cmark/cmark_ctype.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/arena.c -o cmark/arena.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/linked_list.c -o cmark/linked_list.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/plugin.c -o cmark/plugin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/registry.c -o cmark/registry.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/syntax_extension.c -o cmark/syntax_extension.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/plaintext.c -o cmark/plaintext.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/footnotes.c -o cmark/footnotes.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cmark/map.c -o cmark/map.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/autolink.c -o extensions/autolink.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/core-extensions.c -o extensions/core-extensions.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/ext_scanners.c -o extensions/ext_scanners.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/strikethrough.c -o extensions/strikethrough.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/table.c -o extensions/table.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/tagfilter.c -o extensions/tagfilter.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Icmark -I. -DCMARK_GFM_STATIC_DEFINE -DCMARK_GFM_EXTENSIONS_STATIC_DEFINE -DR_NO_REMAP -DSTRICT_R_HEADERS -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c extensions/tasklist.c -o extensions/tasklist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o commonmark.so extensions.o init.o wrapper.o -Lcmark -lstatcmark installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-commonmark/00new/commonmark/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (commonmark) * installing *source* package 'cmprsk' ... ** this is package 'cmprsk' version '2.2-12' ** package 'cmprsk' successfully unpacked and MD5 sums checked ** using staged installation ** libs using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cincsub.f -o cincsub.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c crr.f -o crr.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c crstm.f -o crstm.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c tpoi.f -o tpoi.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o cmprsk.so cincsub.o crr.o crstm.o tpoi.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-cmprsk/00new/cmprsk/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (cmprsk) * installing *source* package 'Rcpp' ... ** this is package 'Rcpp' version '1.1.0.8.1' ** package 'Rcpp' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c api.cpp -o api.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c attributes.cpp -o attributes.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c barrier.cpp -o barrier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c date.cpp -o date.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c module.cpp -o module.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include/ -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rcpp_init.cpp -o rcpp_init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o Rcpp.so api.o attributes.o barrier.o date.o module.o rcpp_init.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-Rcpp/00new/Rcpp/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (Rcpp) * installing *source* package 'plotmo' ... ** this is package 'plotmo' version '3.6.4' ** package 'plotmo' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (plotmo) * installing *source* package 'gamboostLSS' ... ** this is package 'gamboostLSS' version '2.1-0' ** package 'gamboostLSS' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (gamboostLSS) * installing *source* package 'xfun' ... ** this is package 'xfun' version '0.54' ** package 'xfun' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c base64.c -o base64.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rand_lcg.c -o rand_lcg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o xfun.so base64.o init.o rand_lcg.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-xfun/00new/xfun/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (xfun) * installing *source* package 'yaml' ... ** this is package 'yaml' version '2.3.12' ** package 'yaml' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c api.c -o api.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dumper.c -o dumper.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c emitter.c -o emitter.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c implicit.c -o implicit.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c loader.c -o loader.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c parser.c -o parser.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c r_emit.c -o r_emit.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c r_ext.c -o r_ext.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c r_parse.c -o r_parse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reader.c -o reader.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c scanner.c -o scanner.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c writer.c -o writer.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o yaml.so api.o dumper.o emitter.o implicit.o loader.o parser.o r_emit.o r_ext.o r_parse.o reader.o scanner.o writer.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-yaml/00new/yaml/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (yaml) * installing *source* package 'xmlparsedata' ... ** this is package 'xmlparsedata' version '1.0.5' ** package 'xmlparsedata' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (xmlparsedata) * installing *source* package 'grpreg' ... ** this is package 'grpreg' version '3.5.0' ** package 'grpreg' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_cox.c -o gdfit_cox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_gaussian.c -o gdfit_gaussian.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_glm.c -o gdfit_glm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c grpreg_init.c -o grpreg_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_cox.c -o lcdfit_cox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_gaussian.c -o lcdfit_gaussian.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_glm.c -o lcdfit_glm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c maxprod.c -o maxprod.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c standardize.c -o standardize.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o grpreg.so gdfit_cox.o gdfit_gaussian.o gdfit_glm.o grpreg_init.o lcdfit_cox.o lcdfit_gaussian.o lcdfit_glm.o maxprod.o standardize.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-grpreg/00new/grpreg/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (grpreg) * installing *source* package 'pbs' ... ** this is package 'pbs' version '1.1' ** package 'pbs' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pbs) * installing *source* package 'entropy' ... ** this is package 'entropy' version '1.3.2' ** package 'entropy' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (entropy) * installing *source* package 'maptree' ... ** this is package 'maptree' version '1.4-9' ** package 'maptree' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (maptree) * installing *source* package 'ParamHelpers' ... ** this is package 'ParamHelpers' version '1.14.2' ** package 'ParamHelpers' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c c_dfRowsToList.c -o c_dfRowsToList.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ParamHelpers.so c_dfRowsToList.o init.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ParamHelpers/00new/ParamHelpers/libs ** R ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'ParamHelpers' * removing '/tmp/th798/25909589/R-devel/849/library/ParamHelpers' * installing *source* package 'parallelMap' ... ** this is package 'parallelMap' version '1.5.1' ** package 'parallelMap' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'parallelMap' * removing '/tmp/th798/25909589/R-devel/849/library/parallelMap' * installing *source* package 'brnn' ... ** this is package 'brnn' version '0.9.4' ** package 'brnn' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Lanczos.c -o Lanczos.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c util.c -o util.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c unix/util_unix.c -o unix/util_unix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o brnn.so Lanczos.o util.o init.o unix/util_unix.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -fopenmp installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-brnn/00new/brnn/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (brnn) * installing *source* package 'bst' ... ** this is package 'bst' version '0.3-24' ** package 'bst' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (bst) * installing *source* package 'care' ... ** this is package 'care' version '1.1.11' ** package 'care' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (care) * installing *source* package 'cmaes' ... ** this is package 'cmaes' version '1.0-12' ** package 'cmaes' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (cmaes) * installing *source* package 'deepnet' ... ** this is package 'deepnet' version '0.2.1' ** package 'deepnet' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (deepnet) * installing *source* package 'DiceKriging' ... ** this is package 'DiceKriging' version '1.6.1' ** package 'DiceKriging' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c CovFuns.c -o CovFuns.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Scaling.c -o Scaling.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o DiceKriging.so CovFuns.o Scaling.o init.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-DiceKriging/00new/DiceKriging/libs ** R ** inst ** byte-compile and prepare package for lazy loading Note: ... may be used in an incorrect context ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (DiceKriging) * installing *source* package 'emoa' ... ** this is package 'emoa' version '0.5-3' ** package 'emoa' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c avl.c -o avl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cec2009.c -o cec2009.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c crowding_distance.c -o crowding_distance.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dominance.c -o dominance.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c emoa.c -o emoa.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eps_ind.c -o eps_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c front_edge.c -o front_edge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv.c -o hv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hypervolume.c -o hypervolume.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c poly_mutation.c -o poly_mutation.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c r_ind.c -o r_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sb_crossover.c -o sb_crossover.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sympart.c -o sympart.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utilities.c -o utilities.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o emoa.so avl.o cec2009.o crowding_distance.o dominance.o emoa.o eps_ind.o front_edge.o hv.o hypervolume.o poly_mutation.o r_ind.o sb_crossover.o sympart.o utilities.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-emoa/00new/emoa/libs ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (emoa) * installing *source* package 'evtree' ... ** this is package 'evtree' version '1.0-8' ** package 'evtree' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c container.cpp -o container.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c node.cpp -o node.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tree.cpp -o tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c variable.cpp -o variable.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o evtree.so container.o node.o tree.o variable.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-evtree/00new/evtree/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (evtree) * installing *source* package 'frbs' ... ** this is package 'frbs' version '3.2-0' ** package 'frbs' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (frbs) * installing *source* package 'h2o' ... ** this is package 'h2o' version '3.44.0.3' ** package 'h2o' successfully unpacked and MD5 sums checked ** using staged installation ** R ** demo ** inst ** byte-compile and prepare package for lazy loading Performing one-time download of h2o.jar from https://s3.amazonaws.com/h2o-release/h2o/rel-3.44.0/3/Rjar/h2o.jar (This could take a few minutes, please be patient...) ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (h2o) * installing *source* package 'mco' ... ** this is package 'mco' version '1.17' ** package 'mco' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c avl.c -o avl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eps_ind.c -o eps_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv.c -o hv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv_interface.c -o hv_interface.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mco.c -o mco.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nsga2.c -o nsga2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mco.so avl.o eps_ind.o hv.o hv_interface.o mco.o nsga2.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-mco/00new/mco/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mco) * installing *source* package 'mda' ... ** this is package 'mda' version '0.5-5' ** package 'mda' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bruto.f -o bruto.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bsplvd.f -o bsplvd.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bvalue.f -o bvalue.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c dcalcvar.f -o dcalcvar.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c dmarss.f -o dmarss.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c dorthreg.f -o dorthreg.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c dqrreg.f -o dqrreg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mda_init.c -o mda_init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c mspline.f -o mspline.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c sgram.f -o sgram.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c sknotl.f -o sknotl.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c sortdi.f -o sortdi.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c tmatch.f -o tmatch.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c wmean.f -o wmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mda.so bruto.o bsplvd.o bvalue.o dcalcvar.o dmarss.o dorthreg.o dqrreg.o mda_init.o mspline.o sgram.o sknotl.o sortdi.o tmatch.o wmean.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-mda/00new/mda/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mda) * installing *source* package 'mRMRe' ... ** this is package 'mRMRe' version '2.1.2.2' ** package 'mRMRe' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Data.cpp -o Data.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Filter.cpp -o Filter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Math.cpp -o Math.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Matrix.cpp -o Matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c MutualInformationMatrix.cpp -o MutualInformationMatrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exports.cpp -o exports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mRMRe.so Data.o Filter.o Math.o Matrix.o MutualInformationMatrix.o exports.o -fopenmp installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-mRMRe/00new/mRMRe/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mRMRe) * installing *source* package 'neuralnet' ... ** this is package 'neuralnet' version '1.44.2' ** package 'neuralnet' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (neuralnet) * installing *source* package 'party' ... ** this is package 'party' version '1.3-18' ** package 'party' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Classes.c -o Classes.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Convenience.c -o Convenience.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Distributions.c -o Distributions.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c IndependenceTest.c -o IndependenceTest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c LinearStatistic.c -o LinearStatistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Memory.c -o Memory.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Node.c -o Node.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Predict.c -o Predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RandomForest.c -o RandomForest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c S3Classes.c -o S3Classes.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Splits.c -o Splits.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SurrogateSplits.c -o SurrogateSplits.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TestStatistic.c -o TestStatistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeGrow.c -o TreeGrow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Utils.c -o Utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o party.so Classes.o Convenience.o Distributions.o IndependenceTest.o LinearStatistic.o Memory.o Node.o Predict.o RandomForest.o S3Classes.o Splits.o SurrogateSplits.o TestStatistic.o TreeGrow.o Utils.o init.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-party/00new/party/libs ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (party) * installing *source* package 'rFerns' ... ** this is package 'rFerns' version '5.0.0' ** package 'rFerns' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ferns.c -o ferns.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rFerns.so ferns.o -fopenmp installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-rFerns/00new/rFerns/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rFerns) * installing *source* package 'rgenoud' ... ** this is package 'rgenoud' version '5.9-0.11' ** package 'rgenoud' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c change_order.cpp -o change_order.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eval.cpp -o eval.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c evaluate.cpp -o evaluate.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frange_ran.cpp -o frange_ran.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c genoud.cpp -o genoud.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gradient.cpp -o gradient.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c math.cpp -o math.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c multiply.cpp -o multiply.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c numerics.cpp -o numerics.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c operators.cpp -o operators.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c print_format.cpp -o print_format.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rgenoud.cpp -o rgenoud.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rgenoud.so change_order.o eval.o evaluate.o frange_ran.o genoud.o gradient.o init.o math.o multiply.o numerics.o operators.o print_format.o rgenoud.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-rgenoud/00new/rgenoud/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rgenoud) * installing *source* package 'Rmpi' ... ** this is package 'Rmpi' version '0.7-3.3' ** package 'Rmpi' successfully unpacked and MD5 sums checked ** using staged installation checking for gcc... /packages/gcc/12.2.0-nnbserq/bin/gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gcc accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/gcc option to enable C11 features... none needed checking for pkg-config... /home/th798/.conda/envs/emacs1/bin/pkg-config checking if pkg-config knows about OpenMPI... no checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for mpi.h... no configure: error: "Cannot find mpi.h header file" ERROR: configuration failed for package 'Rmpi' * removing '/tmp/th798/25909589/R-devel/849/library/Rmpi' * installing *source* package 'rotationForest' ... ** this is package 'rotationForest' version '0.1.3' ** package 'rotationForest' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rotationForest) * installing *source* package 'RRF' ... ** this is package 'RRF' version '1.9.4.1' ** package 'RRF' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RRF_init.c -o RRF_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c classTree.c -o classTree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c regTree.c -o regTree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c regrf.c -o regrf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rf.c -o rf.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rfsub.f -o rfsub.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rfutils.c -o rfutils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RRF.so RRF_init.o classTree.o regTree.o regrf.o rf.o rfsub.o rfutils.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RRF/00new/RRF/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RRF) * installing *source* package 'stepPlr' ... ** this is package 'stepPlr' version '0.93' ** package 'stepPlr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cg_descent.f -o cg_descent.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c solveplr.f -o solveplr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stepPlr_init.c -o stepPlr_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o stepPlr.so cg_descent.o solveplr.o stepPlr_init.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-stepPlr/00new/stepPlr/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (stepPlr) * installing *source* package 'vdiffr' ... ** this is package 'vdiffr' version '1.0.8' ** package 'vdiffr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++11 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/cpp11/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c compare.cpp -o compare.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/cpp11/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cpp11.cpp -o cpp11.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/cpp11/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c devSVG.cpp -o devSVG.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/projects/genomic-ml/R/R-devel/library/cpp11/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c engine_version.cpp -o engine_version.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++11 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o vdiffr.so compare.o cpp11.o devSVG.o engine_version.o -lpng -lz installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-vdiffr/00new/vdiffr/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (vdiffr) * installing *source* package 'wavelets' ... ** this is package 'wavelets' version '0.3-0.2' ** package 'wavelets' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dwt_backward.c -o dwt_backward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dwt_forward.c -o dwt_forward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modwt_backward.c -o modwt_backward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modwt_forward.c -o modwt_forward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o wavelets.so dwt_backward.o dwt_forward.o modwt_backward.o modwt_forward.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-wavelets/00new/wavelets/libs ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (wavelets) * installing *source* package 'multicool' ... ** this is package 'multicool' version '1.0.1' ** package 'multicool' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c compositions.cpp -o compositions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c multicool.cpp -o multicool.o In file included from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/RcppCommon.h:30, from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp.h:27, from multicool.cpp:8: /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/r/check_r_headers.h:27:21: note: '#pragma message: R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410' 27 | #pragma message "R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o multicool.so RcppExports.o compositions.o multicool.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-multicool/00new/multicool/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (multicool) * installing *source* package 'rlist' ... ** this is package 'rlist' version '0.4.6.2' ** package 'rlist' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'rlist' * removing '/tmp/th798/25909589/R-devel/849/library/rlist' * installing *source* package 'cubature' ... ** this is package 'cubature' version '2.1.4-1' ** package 'cubature' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' ((cd Cuba && \ ./configure && \ make libcuba.a CC="/packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17" CFLAGS="-I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I"/home/th798/R/R-devel/include" -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic" AR="ar" ARFLAGS="-rv" RANLIB="ranlib") && \ touch cuba.ts) checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking for gcc... /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 option to enable C11 features... none needed checking whether the compiler supports GNU Fortran... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gfortran accepts -g... yes checking for ranlib... ranlib checking for a BSD-compatible install... /usr/bin/install -c checking for an ANSI C-conforming const... yes checking for inline... inline checking for long double... yes checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for vfork.h... no checking for size_t... yes checking for ssize_t... yes checking for pid_t... yes checking for powl... yes checking for erf... yes checking for fork... yes checking for vfork... yes checking for working fork... yes checking for working vfork... (cached) yes checking for working alloca.h... yes checking for alloca... yes checking for shmget... yes checking for getloadavg... yes checking for variable-size arrays... yes checking for MathLink... no checking for qmake... no configure: creating ./config.status config.status: creating makefile config.status: creating config.h make[1]: Entering directory '/tmp/th798/25909589/Rtmp6Z5ZGe/R.INSTALL1c761969e795f5/cubature/src/Cuba' /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -DNOUNDERSCORE -c -o r_helpers.o ./src/common/r_helpers.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -I./src/vegas -DNOUNDERSCORE -c -o Vegas.o ./src/vegas/Vegas.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -I./src/suave -DNOUNDERSCORE -c -o Suave.o ./src/suave/Suave.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -I./src/divonne -DNOUNDERSCORE -c -o Divonne.o ./src/divonne/Divonne.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -I./src/cuhre -DNOUNDERSCORE -c -o Cuhre.o ./src/cuhre/Cuhre.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -DNOUNDERSCORE -c -o Fork.o ./src/common/Fork.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -DNOUNDERSCORE -c -o Global.o ./src/common/Global.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -c -o Data.o ./src/common/Data.c ar -rv libcuba.a Vegas.o Suave.o Divonne.o Cuhre.o Fork.o Global.o r_helpers.o Data.o ar: creating libcuba.a a - Vegas.o a - Suave.o a - Divonne.o a - Cuhre.o a - Fork.o a - Global.o a - r_helpers.o a - Data.o rm -f Vegas.o Suave.o Divonne.o Cuhre.o Fork.o Global.o r_helpers.o Data.o ranlib libcuba.a make[1]: Leaving directory '/tmp/th798/25909589/Rtmp6Z5ZGe/R.INSTALL1c761969e795f5/cubature/src/Cuba' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Rcpp-Cuba.cpp -o Rcpp-Cuba.o ((cd cubature-1.0.4 && \ (make libcubature.a CC="/packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17" CFLAGS="-I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I"/home/th798/R/R-devel/include" -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic" AR="ar" RANLIB="ranlib")) && \ touch cubature.ts) make[1]: Entering directory '/tmp/th798/25909589/Rtmp6Z5ZGe/R.INSTALL1c761969e795f5/cubature/src/cubature-1.0.4' /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -c -o hcubature.o hcubature.c /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I/home/th798/R/R-devel/include -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -c -o pcubature.o pcubature.c ar cr libcubature.a hcubature.o pcubature.o ranlib libcubature.a make[1]: Leaving directory '/tmp/th798/25909589/Rtmp6Z5ZGe/R.INSTALL1c761969e795f5/cubature/src/cubature-1.0.4' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Rcpp-cubature.cpp -o Rcpp-cubature.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/gcc -std=gnu17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I. -I../inst/include -I../../inst/include -I./src/common -D_R_INTERFACE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cubature_init.c -o cubature_init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o cubature.so Rcpp-Cuba.o Rcpp-cubature.o RcppExports.o cubature_init.o -L./cubature-1.0.4 -L./Cuba -lcubature -lcuba installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-cubature/00new/cubature/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (cubature) * installing *source* package 'later' ... ** this is package 'later' version '1.4.4' ** package 'later' successfully unpacked and MD5 sums checked ** using staged installation Running configure script -latomic linker flag not needed. ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o In file included from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/RcppCommon.h:30, from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp.h:27, from RcppExports.cpp:5: /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/r/check_r_headers.h:35:21: note: '#pragma message: Rinternals.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410' 35 | #pragma message "Rinternals.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c callback_registry.cpp -o callback_registry.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c debug.cpp -o debug.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fd.cpp -o fd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c later.cpp -o later.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c later_posix.cpp -o later_posix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c later_win32.cpp -o later_win32.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timer_posix.cpp -o timer_posix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timestamp_unix.cpp -o timestamp_unix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timestamp_win32.cpp -o timestamp_win32.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tinycthread.c -o tinycthread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -pthread -DSTRICT_R_HEADERS -DRCPP_NO_MODULES -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wref.c -o wref.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o later.so RcppExports.o callback_registry.o debug.o fd.o init.o later.o later_posix.o later_win32.o timer_posix.o timestamp_unix.o timestamp_win32.o tinycthread.o wref.o -pthread installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-later/00new/later/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (later) * installing *source* package 'minqa' ... ** this is package 'minqa' version '1.2.8' ** package 'minqa' successfully unpacked and MD5 sums checked ** using staged installation ** libs using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c altmov.f -o altmov.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bigden.f -o bigden.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c biglag.f -o biglag.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bobyqa.f -o bobyqa.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c bobyqb.f -o bobyqb.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c lagmax.f -o lagmax.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c minqa.cpp -o minqa.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c newuoa.f -o newuoa.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c newuob.f -o newuob.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c prelim.f -o prelim.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rescue.f -o rescue.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c trsapp.f -o trsapp.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c trsbox.f -o trsbox.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c trstep.f -o trstep.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c uobyqa.f -o uobyqa.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c uobyqb.f -o uobyqb.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c update.f -o update.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c updatebobyqa.f -o updatebobyqa.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o minqa.so altmov.o bigden.o biglag.o bobyqa.o bobyqb.o lagmax.o minqa.o newuoa.o newuob.o prelim.o rescue.o trsapp.o trsbox.o trstep.o uobyqa.o uobyqb.o update.o updatebobyqa.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-minqa/00new/minqa/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (minqa) * installing *source* package 'ModelMetrics' ... ** this is package 'ModelMetrics' version '1.2.2.2' ** package 'ModelMetrics' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c auc_.cpp -o auc_.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c confusionMatrix_.cpp -o confusionMatrix_.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c error.cpp -o error.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gini_.cpp -o gini_.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c logLoss_.cpp -o logLoss_.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ModelMetrics.so RcppExports.o auc_.o confusionMatrix_.o error.o gini_.o logLoss_.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ModelMetrics/00new/ModelMetrics/libs ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'ModelMetrics' * removing '/tmp/th798/25909589/R-devel/849/library/ModelMetrics' * installing *source* package 'plyr' ... ** this is package 'plyr' version '1.8.9' ** package 'plyr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c loop_apply.c -o loop_apply.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c split-numeric.cpp -o split-numeric.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o plyr.so RcppExports.o loop_apply.o split-numeric.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-plyr/00new/plyr/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (plyr) * installing *source* package 'pROC' ... ** this is package 'pROC' version '1.19.0.1' ** package 'pROC' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppVersion.cpp -o RcppVersion.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c delong.cpp -o delong.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o pROC.so RcppExports.o RcppVersion.o delong.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-pROC/00new/pROC/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pROC) * installing *source* package 'RcppArmadillo' ... ** this is package 'RcppArmadillo' version '15.2.2-1' ** package 'RcppArmadillo' successfully unpacked and MD5 sums checked ** using staged installation checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C++... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 option to enable C++11 features... none needed checking how to run the C++ preprocessor... /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -E checking whether the compiler supports GNU C++... (cached) yes checking whether /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 accepts -g... (cached) yes checking for /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 option to enable C++11 features... (cached) none needed checking what system we are on... running Linux on x86_64 checking whether we have a suitable tempdir... /tmp/th798/25909589 checking whether on Linux... yes checking whether R CMD SHLIB can already compile OpenMP programs... yes checking whether on macOS... no checking for OpenMP... found and suitable configure: creating ./config.status config.status: creating inst/include/RcppArmadillo/config/RcppArmadilloConfigGenerated.h config.status: creating src/Makevars ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DARMA_USE_CURRENT -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppArmadillo.cpp -o RcppArmadillo.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DARMA_USE_CURRENT -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DARMA_USE_CURRENT -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastLm.cpp -o fastLm.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppArmadillo.so RcppArmadillo.o RcppExports.o fastLm.o -fopenmp -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RcppArmadillo/00new/RcppArmadillo/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppArmadillo) * installing *source* package 'ggplot2' ... ** this is package 'ggplot2' version '4.0.1' ** package 'ggplot2' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ggplot2) * installing *source* package 'RcppEigen' ... ** this is package 'RcppEigen' version '0.3.4.0.2' ** package 'RcppEigen' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppEigen.cpp -o RcppEigen.o In file included from ../inst/include/Eigen/Core:205, from ../inst/include/Eigen/Dense:1, from ../inst/include/RcppEigenForward.h:28, from ../inst/include/RcppEigen.h:25, from RcppEigen.cpp:22: ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from ../inst/include/Eigen/Core:174: ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/Core:165: ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from ../inst/include/Eigen/Core:271: ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/SparseCore:37, from ../inst/include/Eigen/Sparse:26, from ../inst/include/RcppEigenForward.h:29: ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': ../inst/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' ../inst/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' ../inst/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o In file included from ../inst/include/Eigen/Core:205, from ../inst/include/Eigen/Dense:1, from ../inst/include/RcppEigenForward.h:28, from ../inst/include/RcppEigen.h:25, from RcppExports.cpp:4: ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from ../inst/include/Eigen/Core:174: ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/Core:165: ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from ../inst/include/Eigen/Core:271: ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/SparseCore:37, from ../inst/include/Eigen/Sparse:26, from ../inst/include/RcppEigenForward.h:29: ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': ../inst/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' ../inst/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' ../inst/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastLm.cpp -o fastLm.o In file included from ../inst/include/Eigen/Core:205, from ../inst/include/Eigen/Dense:1, from ../inst/include/RcppEigenForward.h:28, from ../inst/include/RcppEigen.h:25, from fastLm.h:25, from fastLm.cpp:23: ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ ../inst/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from ../inst/include/Eigen/Core:174: ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ ../inst/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/Core:165: ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from ../inst/include/Eigen/Core:271: ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' ../inst/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' ../inst/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/SparseCore:37, from ../inst/include/Eigen/Sparse:26, from ../inst/include/RcppEigenForward.h:29: ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': ../inst/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' ../inst/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' ../inst/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here ../inst/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' fastLm.h:45:21: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' fastLm.h:45:21: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:70:124: required from 'class Eigen::ColPivHouseholderQR >' fastLm.h:48:42: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:440:19: required from 'class Eigen::ColPivHouseholderQR >' fastLm.h:48:42: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' fastLm.h:53:16: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' fastLm.h:54:16: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' fastLm.h:67:65: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' fastLm.cpp:51:29: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Array.h:45:7: required from 'class Eigen::Array' fastLm.cpp:64:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Array >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Array > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, Eigen::Array > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Array >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Array, const Eigen::CwiseNullaryOp, Eigen::Array > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Array, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Array, const Eigen::CwiseNullaryOp, Eigen::Array > >' fastLm.cpp:68:24: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> > >' fastLm.cpp:74:28: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >' fastLm.cpp:96:28: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>' fastLm.cpp:98:48: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, -1, -1, false>, 2>, Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix >' fastLm.cpp:99:32: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:43:39: required from 'struct Eigen::internal::traits, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/util/ForwardDeclarations.h:23:29: required from 'struct Eigen::internal::traits, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' fastLm.cpp:99:54: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:23:28: required from 'struct Eigen::internal::traits, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' fastLm.cpp:99:54: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >' fastLm.cpp:99:54: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>' fastLm.cpp:99:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >' fastLm.cpp:104:13: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>' fastLm.cpp:106:13: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Block, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Block, -1, 1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Block, -1, 1, false>, 0>' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 2, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 2>' fastLm.cpp:107:45: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:43:39: required from 'struct Eigen::internal::traits, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/util/ForwardDeclarations.h:23:29: required from 'struct Eigen::internal::traits, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' fastLm.cpp:112:57: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, Eigen::internal::member_sum, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:23:28: required from 'struct Eigen::internal::traits, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' fastLm.cpp:112:57: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >' fastLm.cpp:112:57: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >' fastLm.cpp:118:39: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>' fastLm.cpp:127:45: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' fastLm.cpp:127:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, 1>, Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, 1>, Eigen::Matrix >' fastLm.cpp:129:40: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Solve, 1>, Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Solve, 1>, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Solve, 1>, Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Solve, 1>, Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Solve, 1>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:43:39: required from 'struct Eigen::internal::traits, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' ../inst/include/Eigen/src/Core/util/ForwardDeclarations.h:23:29: required from 'struct Eigen::internal::traits, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' fastLm.cpp:129:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' ../inst/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:23:28: required from 'struct Eigen::internal::traits, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' fastLm.cpp:129:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >' fastLm.cpp:129:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>' fastLm.cpp:134:18: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' fastLm.cpp:139:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1>, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/Solve.h:86:7: required from 'class Eigen::SolveImpl, 1>, Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/Solve.h:62:7: required from 'class Eigen::Solve, 1>, Eigen::Matrix >' fastLm.cpp:141:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Matrix >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Matrix >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1>, Eigen::Matrix >, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 1>, Eigen::Matrix >, 0>' fastLm.cpp:141:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1>, Eigen::Matrix >, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1>, Eigen::Matrix >, 0> > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 1>, Eigen::Matrix >, 0> > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> >' fastLm.cpp:141:54: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >' fastLm.cpp:141:61: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' fastLm.cpp:163:25: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper >' fastLm.cpp:163:45: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::DiagonalWrapper > >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::DiagonalWrapper > >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::DiagonalWrapper > >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base >, Eigen::DiagonalWrapper > >, 1, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl >, Eigen::DiagonalWrapper > >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::DiagonalWrapper > >, 1>' fastLm.cpp:163:59: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>' fastLm.cpp:164:32: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' fastLm.cpp:172:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::DiagonalWrapper > >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::DiagonalWrapper > >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::DiagonalWrapper > >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::DiagonalWrapper > >, 1, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::DiagonalWrapper > >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::DiagonalWrapper > >, 1>' fastLm.cpp:172:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:97:21: required from 'class Eigen::Tridiagonalization >' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:111:62: required from 'class Eigen::SelfAdjointEigenSolver >' fastLm.cpp:180:39: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Array >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Array > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Array > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Array, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Array >' fastLm.cpp:182:47: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Array > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Array > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Array > > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::Array > >' fastLm.cpp:182:56: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::DiagonalWrapper, const Eigen::Array > > >, 1>' fastLm.cpp:182:70: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>' fastLm.cpp:183:51: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >' fastLm.cpp:230:49: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >' fastLm.cpp:235:45: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >' fastLm.cpp:235:45: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/util/XprHelper.h:513:38: required from 'struct Eigen::internal::cast_return_type, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseUnaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h:48:179: required from 'struct Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >::CastXpr' ../inst/include/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h:62:1: required by substitution of 'template typename Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >::CastXpr::Type Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >::cast() const [with NewType = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:426:117: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/util/XprHelper.h:513:38: required from 'struct Eigen::internal::cast_return_type, const Eigen::CwiseUnaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h:48:179: required from 'struct Eigen::DenseBase >::CastXpr' ../inst/include/Eigen/src/Core/../plugins/CommonCwiseUnaryOps.h:62:1: required by substitution of 'template typename Eigen::DenseBase >::CastXpr::Type Eigen::DenseBase >::cast() const [with NewType = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:426:117: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:111:59: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' fastLm.cpp:73:35: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:363:86: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:363:86: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>' ../inst/include/Eigen/src/Cholesky/LLT.h:448:33: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true>, -1, 1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>, -1, 1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1>' ../inst/include/Eigen/src/Cholesky/LLT.h:448:43: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>' ../inst/include/Eigen/src/Cholesky/LLT.h:448:91: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false>, 1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>, 1, -1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, 1, -1, false>, -1>' ../inst/include/Eigen/src/Cholesky/LLT.h:448:101: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:453:34: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' fastLm.cpp:233:44: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ../inst/include/Eigen/Core:330: ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:72:102: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1080:42: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:92:109: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'class Eigen::internal::gebp_traits': ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1085:45: required from 'struct Eigen::internal::gebp_kernel, 4, 4, false, false>' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:92:109: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:425:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 425 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:426:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 426 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:427:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 427 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:384:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 384 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:49: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 432 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && unpacket_traits<_RhsPacket>::vectorizable, | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:432:94: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 433 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:433:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 434 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:434:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 435 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:435:65: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 460 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:460:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 461 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:461:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 462 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:462:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 465 | typedef QuadPacket RhsPacketx4; | ^~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:465:33: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:521:73: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:549:27: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:394:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1>' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:82: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:55: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>' ../inst/include/Eigen/src/Cholesky/LDLT.h:325:19: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0>, -1, 1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, 0>, -1>' ../inst/include/Eigen/src/Cholesky/LDLT.h:325:26: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 0>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 0>, -1, 1, false> >' ../inst/include/Eigen/src/Cholesky/LDLT.h:325:43: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, false>' ../inst/include/Eigen/src/Cholesky/LDLT.h:352:35: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >' ../inst/include/Eigen/src/Cholesky/LDLT.h:358:80: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 0>, -1, 1, false> >, Eigen::Transpose, 1, -1, false> >, 1>' ../inst/include/Eigen/src/Cholesky/LDLT.h:358:67: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:126:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Block, -1, 1, false>, 0, 6>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Block, -1, 1, false>, 0>' ../inst/include/Eigen/src/Cholesky/LDLT.h:359:35: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:32: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Cholesky/LDLT.h:379:56: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >' ../inst/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, -1, 1, false> > >' ../inst/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, -1, 1, false> >' ../inst/include/Eigen/src/Cholesky/LDLT.h:387:32: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/SVD/JacobiSVD.h:691:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/SVD/JacobiSVD.h:691:29: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/SVD/JacobiSVD.h:697:60: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, const Eigen::Matrix >, 0>' ../inst/include/Eigen/src/SVD/JacobiSVD.h:705:61: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >' ../inst/include/Eigen/src/SVD/JacobiSVD.h:765:62: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = false]': ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:100:15: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; Packet = __vector(2) double; bool Conjugate = false; bool PanelMode = false]': ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:106:17: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2256:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2256 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2258:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2258 | HalfPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2259:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2259 | QuarterPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2259:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2298:39: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2298 | PacketBlock kernel_half; | ^~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2298:39: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2304:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2304 | PacketBlock kernel_quarter; | ^~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2304:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2304:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2304:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gebp_kernel::operator()(const DataMapper&, const LhsScalar*, const RhsScalar*, Index, Index, Index, ResScalar, Index, Index, Index, Index) [with LhsScalar = double; RhsScalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int mr = 4; int nr = 4; bool ConjugateLhs = false; bool ConjugateRhs = false; ResScalar = double]': ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:113:15: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1920:103: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1920 | const int SResPacketHalfSize = unpacket_traits::half>::size; | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1921 | const int SResPacketQuarterSize = unpacket_traits::half>::half>::size; | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1921:138: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1977:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1977 | typedef typename conditional=8,typename unpacket_traits::half,SResPacket>::type SResPacketHalf; | ^~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1978:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1978 | typedef typename conditional=8,typename unpacket_traits::half,SLhsPacket>::type SLhsPacketHalf; | ^~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1979:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1979 | typedef typename conditional=8,typename unpacket_traits::half,SRhsPacket>::type SRhsPacketHalf; | ^~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:1980:135: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 1980 | typedef typename conditional=8,typename unpacket_traits::half,SAccPacket>::type SAccPacketHalf; | ^~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:155:52: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:155:52: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>' ../inst/include/Eigen/src/Householder/Householder.h:45:80: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' ../inst/include/Eigen/src/Householder/Householder.h:127:63: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>, -1, -1, false>' ../inst/include/Eigen/src/Householder/Householder.h:128:82: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Householder/Householder.h:129:38: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Householder/Householder.h:129:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>, 1, -1, false>' ../inst/include/Eigen/src/Householder/Householder.h:130:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Householder/Householder.h:131:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Householder/Householder.h:131:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Householder/Householder.h:132:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Householder/Householder.h:132:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:90:75: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >' ../inst/include/Eigen/src/Core/TriangularMatrix.h:175:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/TriangularMatrix.h:187:58: required from 'class Eigen::TriangularView, -1, -1, false> >, 6>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:93: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:96: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:101:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ../inst/include/Eigen/src/Core/TriangularMatrix.h:175:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/TriangularMatrix.h:187:58: required from 'class Eigen::TriangularView >, 1>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:63: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:22: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' ../inst/include/Eigen/src/Householder/Householder.h:127:63: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' ../inst/include/Eigen/src/Householder/Householder.h:127:63: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>, -1, -1, false>' ../inst/include/Eigen/src/Householder/Householder.h:128:82: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >' ../inst/include/Eigen/src/Householder/Householder.h:129:38: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 3>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Householder/Householder.h:129:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, -1, false>, 1, -1, false>' ../inst/include/Eigen/src/Householder/Householder.h:130:21: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Householder/Householder.h:131:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Householder/Householder.h:131:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >' ../inst/include/Eigen/src/Householder/Householder.h:132:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 4>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Householder/Householder.h:132:41: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:221:22: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:448:74: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:221:22: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:448:125: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ../inst/include/Eigen/Core:277: ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' ../inst/include/Eigen/src/Core/BooleanRedux.h:84:50: required from 'bool Eigen::DenseBase::all() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >]' ../inst/include/Eigen/src/Cholesky/LDLT.h:379:74: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' ../inst/include/Eigen/src/Core/BooleanRedux.h:84:50: required from 'bool Eigen::DenseBase::all() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >]' ../inst/include/Eigen/src/Cholesky/LDLT.h:379:74: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::ArrayWrapper, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' ../inst/include/Eigen/src/Core/BooleanRedux.h:84:50: required from 'bool Eigen::DenseBase::all() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >]' ../inst/include/Eigen/src/Cholesky/LDLT.h:387:50: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false> >' ../inst/include/Eigen/src/Core/TriangularMatrix.h:175:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/TriangularMatrix.h:187:58: required from 'class Eigen::TriangularView, -1, -1, false> >, 1>' ../inst/include/Eigen/src/SVD/JacobiSVD.h:231:121: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/misc/RealSvd2x2.h:25:26: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long int]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:730:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, -1>' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:451:40: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Array; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Array; Func = Eigen::internal::scalar_max_op; Evaluator = Eigen::internal::redux_evaluator >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Array; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:448:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with int NaNPropagation = 0; Derived = Eigen::Array; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/DenseBase.h:466:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Array; typename Eigen::internal::traits::Scalar = double]' fastLm.cpp:66:25: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:507:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false>, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/Householder.h:76:64: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/Householder/Householder.h:93:22: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:567:77: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:20: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:28: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:70: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:78: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:90: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:64:84: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::TriangularView, -1, -1, false>, -1, -1, false>, 5>, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:64:57: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:73:50: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:67: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:123:11: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:12: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:20: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:96: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 2>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 2>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 2>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:101:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base >, 1>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl >, 1>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, 1>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:66: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 5>, Eigen::Matrix, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 5>, Eigen::Matrix, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 5>, Eigen::Matrix, 0, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 5>, Eigen::Matrix, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:22: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::Transpose, 1, -1, false> >, 0>' ../inst/include/Eigen/src/Cholesky/LLT.h:332:45: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:344:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:323:35: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Cholesky/LLT.h:332:58: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Transpose, -1, -1, false>, 1, -1, false> >, 0>' ../inst/include/Eigen/src/Cholesky/LLT.h:332:45: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:883:17: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:129:63: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:167:44: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Product.h:175:24: required from 'Eigen::ProductImpl::Scalar Eigen::ProductImpl::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Option = 0; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/DenseBase.h:530:29: required from 'Eigen::DenseBase::CoeffReturnType Eigen::DenseBase::value() const [with Derived = Eigen::Product, 1, -1, false>, Eigen::Block, -1, 1, false>, 0>; CoeffReturnType = double]' ../inst/include/Eigen/src/Cholesky/LDLT.h:359:56: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 2, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, 2, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 2, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Jacobi/Jacobi.h:297:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long int]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:730:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/DenseBase.h:179:81: required from 'class Eigen::DenseBase, 1, 2, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 2, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 2, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, 1, 2, false>, 1>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 2, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Jacobi/Jacobi.h:297:10: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long int]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:730:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ../inst/include/Eigen/src/Jacobi/Jacobi.h:475:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, -1, false>; VectorY = Eigen::Block, 1, -1, false>; OtherScalar = double]' ../inst/include/Eigen/src/Jacobi/Jacobi.h:299:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:733:40: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:370:35: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Jacobi/Jacobi.h:313:10: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:895:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:548:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:460:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:171:23: required from 'void Eigen::internal::tribb_kernel::operator()(ResScalar*, Index, Index, const LhsScalar*, const RhsScalar*, Index, Index, const ResScalar&) [with LhsScalar = double; RhsScalar = double; Index = long int; int mr = 4; int nr = 4; bool ConjLhs = false; bool ConjRhs = false; int ResInnerStride = 1; int UpLo = 1; ResScalar = double]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:116:13: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 1; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Matrix; OtherType = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; _MatrixType = Eigen::Matrix; unsigned int UpLo = 1; Scalar = double]' fastLm.cpp:74:16: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ../inst/include/Eigen/src/Core/Visitor.h:79:51: required from 'class Eigen::internal::visitor_evaluator, 1, -1, false> >' ../inst/include/Eigen/src/Core/Visitor.h:123:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, 1, -1, false>, 0>; Derived = Eigen::Block, 1, -1, false>]' ../inst/include/Eigen/src/Core/Visitor.h:374:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with int NaNPropagation = 0; IndexType = long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/DenseBase.h:501:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long int; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:521:90: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:78:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::Matrix; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::Matrix; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Matrix; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:851:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Householder/Householder.h:132:29: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, -1, false>, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:221:28: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, 1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:448:125: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:328:36: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:344:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, -1, false>, 1, -1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:328:36: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, 0>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Visitor.h:79:51: required from 'class Eigen::internal::visitor_evaluator, const Eigen::Block, 0>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Visitor.h:123:17: required from 'void Eigen::DenseBase::visit(Visitor&) const [with Visitor = Eigen::internal::max_coeff_visitor, const Eigen::Block, 0>, -1, 1, false> >, 0>; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0>, -1, 1, false> >]' ../inst/include/Eigen/src/Core/Visitor.h:374:14: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with int NaNPropagation = 0; IndexType = long int; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/DenseBase.h:501:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff(IndexType*) const [with IndexType = long int; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, 0>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LDLT.h:325:54: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:369:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:178:42: required from 'static void Eigen::internal::Assignment, Eigen::internal::sub_assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::sub_assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Householder/Householder.h:169:25: required from 'void Eigen::MatrixBase::applyHouseholderOnTheRight(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, 5>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Transpose, -1, 1, false> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, 5>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 2, false> >': ../inst/include/Eigen/src/Jacobi/Jacobi.h:475:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 1, 2, false>; VectorY = Eigen::Block, 1, 2, false>; OtherScalar = double]' ../inst/include/Eigen/src/Jacobi/Jacobi.h:299:40: required from 'void Eigen::MatrixBase::applyOnTheLeft(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/misc/RealSvd2x2.h:46:19: required from 'void Eigen::internal::real_2x2_jacobi_svd(const MatrixType&, Index, Index, Eigen::JacobiRotation*, Eigen::JacobiRotation*) [with MatrixType = Eigen::Matrix; RealScalar = double; Index = long int]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:730:42: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': ../inst/include/Eigen/src/Jacobi/Jacobi.h:475:5: required from 'void Eigen::internal::apply_rotation_in_the_plane(Eigen::DenseBase&, Eigen::DenseBase&, const Eigen::JacobiRotation&) [with VectorX = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VectorY = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; OtherScalar = double]' ../inst/include/Eigen/src/Jacobi/Jacobi.h:315:40: required from 'void Eigen::MatrixBase::applyOnTheRight(Eigen::Index, Eigen::Index, const Eigen::JacobiRotation&) [with OtherScalar = double; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Eigen::Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:895:24: required from 'void Eigen::internal::tridiagonal_qr_step(RealScalar*, RealScalar*, Index, Index, Scalar*, Index) [with int StorageOrder = 0; RealScalar = double; Scalar = double; Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:548:87: required from 'Eigen::ComputationInfo Eigen::internal::computeFromTridiagonal_impl(DiagType&, SubDiagType&, Eigen::Index, bool, MatrixType&) [with MatrixType = Eigen::Matrix; DiagType = Eigen::Matrix; SubDiagType = Eigen::Matrix; Eigen::Index = long int]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:460:49: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' fastLm.cpp:233:44: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >': ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, 1, true>, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; Func = assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:142:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:182:19: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::operator()(Eigen::Index) const [with Derived = Eigen::Block, -1, 1, false>; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:53: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' ../inst/include/Eigen/src/Householder/Householder.h:93:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'struct Eigen::internal::gemm_pack_rhs, 4, 1, false, false>': ../inst/include/Eigen/src/Core/products/TriangularSolverMatrix.h:232:74: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]' ../inst/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]' ../inst/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Cholesky/LLT.h:364:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2504:50: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2504 | typedef typename unpacket_traits::half HalfPacket; | ^~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2505:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2505 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2505:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2508:56: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2508 | HalfPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2508:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2509 | QuarterPacketSize = unpacket_traits::size}; | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'struct Eigen::internal::gemm_pack_rhs, 4, 1, false, true>': ../inst/include/Eigen/src/Core/products/TriangularSolverMatrix.h:233:85: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]' ../inst/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]' ../inst/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Cholesky/LLT.h:364:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2504:50: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2504 | typedef typename unpacket_traits::half HalfPacket; | ^~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2505:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2505 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2505:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2508:56: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2508 | HalfPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2508:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2509 | QuarterPacketSize = unpacket_traits::size}; | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2509:70: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Func = Eigen::internal::scalar_max_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:448:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with int NaNPropagation = 1; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:679:71: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:37:44: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:372:86: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:375:18: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/products/SelfadjointRank2Update.h:34:74: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:375:18: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/products/SelfadjointRank2Update.h:35:60: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:375:18: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/products/SelfadjointRank2Update.h:35:23: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:375:18: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Matrix; Func = Eigen::internal::scalar_max_op; Evaluator = Eigen::internal::redux_evaluator >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:448:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with int NaNPropagation = 0; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/DenseBase.h:466:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:511:85: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/Householder.h:78:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:99:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1, 3>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:402:50: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, 4>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:416:50: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:78:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:142:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long int]' ../inst/include/Eigen/src/Householder/Householder.h:79:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:142:7: required from 'Eigen::DenseCoeffsBase::CoeffReturnType Eigen::DenseCoeffsBase::coeff(Eigen::Index) const [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; CoeffReturnType = const double&; Eigen::Index = long int]' ../inst/include/Eigen/src/Householder/Householder.h:79:20: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:221:28: required from 'static typename Eigen::NumTraits::Scalar>::Real Eigen::internal::lpNorm_selector::run(const Eigen::MatrixBase&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:269:52: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::lpNorm() const [with int p = 1; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:448:74: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:328:36: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int Pack1 = 4; int Pack2 = 2; Packet = __vector(2) double; bool Conjugate = false; bool PanelMode = true]': ../inst/include/Eigen/src/Core/products/TriangularSolverMatrix.h:319:27: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 1; int OtherInnerStride = 1]' ../inst/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; int Side = 2; int Mode = 2]' ../inst/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 2; OtherDerived = Eigen::Block, -1, -1, false>; _MatrixType = const Eigen::Transpose, -1, -1, false> >; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Cholesky/LLT.h:364:96: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2100:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2100 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2102:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2102 | HalfPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2103 | QuarterPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_lhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::const_blas_data_mapper; int Pack1 = 4; int Pack2 = 2; Packet = __vector(2) double; bool Conjugate = false; bool PanelMode = false]': ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h:106:17: required from 'static void Eigen::internal::general_matrix_matrix_triangular_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, Index, const ResScalar&, Eigen::internal::level3_blocking&) [with Index = long int; LhsScalar = double; int LhsStorageOrder = 0; bool ConjugateLhs = false; RhsScalar = double; int RhsStorageOrder = 1; bool ConjugateRhs = false; int ResInnerStride = 1; int UpLo = 1; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:113:12: required from 'static void Eigen::selfadjoint_product_selector::run(MatrixType&, const OtherType&, const typename MatrixType::Scalar&) [with MatrixType = Eigen::Block, -1, -1, false>; OtherType = Eigen::Block, -1, -1, false>; int UpLo = 1; typename MatrixType::Scalar = double]' ../inst/include/Eigen/src/Core/products/SelfadjointProduct.h:126:62: required from 'Eigen::SelfAdjointView& Eigen::SelfAdjointView::rankUpdate(const Eigen::MatrixBase&, const Scalar&) [with DerivedU = Eigen::Block, -1, -1, false>; _MatrixType = Eigen::Block, -1, -1, false>; unsigned int UpLo = 1; Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:365:64: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2100:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2100 | typedef typename unpacket_traits::half>::half QuarterPacket; | ^~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2102:56: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2102 | HalfPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 2103 | QuarterPacketSize = unpacket_traits::size, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2103:62: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:251:54: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:124:75: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Product.h:175:24: required from 'Eigen::ProductImpl::Scalar Eigen::ProductImpl::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Block, 1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Option = 0; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/DenseBase.h:530:29: required from 'Eigen::DenseBase::CoeffReturnType Eigen::DenseBase::value() const [with Derived = Eigen::Product, 1, -1, false>, Eigen::Block, -1, 1, false>, 0>; CoeffReturnType = double]' ../inst/include/Eigen/src/Cholesky/LDLT.h:359:56: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>, 2>' ../inst/include/Eigen/src/Cholesky/LDLT.h:577:26: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:139:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, Eigen::Matrix, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base > >, Eigen::Matrix, 2, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl > >, Eigen::Matrix, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product > >, Eigen::Matrix, 2>' ../inst/include/Eigen/src/Cholesky/LDLT.h:610:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:139:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:507:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 16, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 16, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 16, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 16, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:280:48: required from 'void Eigen::internal::outer_product_selector_run(Dst&, const Lhs&, const Rhs&, const Func&, const false_type&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; Func = generic_product_impl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::DenseShape, Eigen::DenseShape, 5>::sub]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:329:41: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:567:77: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Block, 1, 1, false>; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Block, 1, 1, false>]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:606:103: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = mul_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::mul_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = mul_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = mul_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:28: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:123:11: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, -1, -1, false>, 1, -1, false>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]' ../inst/include/Eigen/src/Householder/Householder.h:130:9: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, -1, false> >': ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, 0>; Func = assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:43:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, -1, -1, false>, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Product, -1, -1, false>, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:43:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:78:71: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:349:16: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false> >, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >; Functor = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:73:45: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >; Functor = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 1, -1, true>, 1, -1, false> >; Functor = Eigen::internal::add_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:73:45: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 2, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 2, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 2, -1, true> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 2, -1, true, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 2, -1, true, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 2, -1, true>' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:203:15: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:112:58: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 2, -1, true> >': ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 2, -1, true> >' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:217:20: required from 'PacketType Eigen::internal::evaluator >::packet(Eigen::Index) const [with int LoadMode = 0; PacketType = __vector(2) double; ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/CoreEvaluators.h:603:81: required from 'PacketType Eigen::internal::unary_evaluator, Eigen::internal::IndexBased>::packet(Eigen::Index) const [with int LoadMode = 0; PacketType = __vector(2) double; UnaryOp = Eigen::internal::scalar_sqrt_op; ArgType = const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1>; typename Eigen::CwiseUnaryOp::Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:681:114: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignPacket(Eigen::Index) [with int StoreMode = 16; int LoadMode = 0; PacketType = __vector(2) double; DstEvaluatorTypeT = Eigen::internal::evaluator, -1, 1, false> >; SrcEvaluatorTypeT = Eigen::internal::evaluator, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> > >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:437:75: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:112:58: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = div_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Functor = Eigen::internal::div_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, false>; Src = Eigen::CwiseNullaryOp, Eigen::Matrix >; Func = div_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:28: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, -1, -1, false>, -1, 1, false>; Scalar = double]' ../inst/include/Eigen/src/Cholesky/LLT.h:333:21: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ../inst/include/Eigen/Core:333: ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:87:38: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ../inst/include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Block, -1, 1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:357:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:91:42: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ../inst/include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Block, -1, 1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:357:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:95:45: required from 'struct Eigen::internal::general_matrix_vector_product, 0, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' ../inst/include/Eigen/src/Core/GeneralProduct.h:253:134: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Block, -1, 1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, Eigen::Block, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:357:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 2, Eigen::Stride<0, 0> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:296:40: required from 'static void Eigen::internal::gemv_dense_selector<2, 0, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Block, -1, -1, false>; Rhs = Eigen::Block, -1, 1, false>; Dest = Eigen::Block, -1, 1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:388:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:697:18: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/Householder.h:93:15: required from 'void Eigen::MatrixBase::makeHouseholder(EssentialPart&, Scalar&, RealScalar&) const [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1, 1, false>, -1>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:46:18: required from 'void Eigen::MatrixBase::makeHouseholderInPlace(Scalar&, RealScalar&) [with Derived = Eigen::Block, -1, 1, true>, -1, 1, false>; Scalar = double; RealScalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:540:52: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>' ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:97:18: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:125:66: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long int; int Mode = 2; bool Conjugate = false]' ../inst/include/Eigen/src/Core/SolveTriangular.h:73:12: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h: In instantiation of 'void Eigen::internal::gemm_pack_rhs::operator()(Scalar*, const DataMapper&, Index, Index, Index, Index) [with Scalar = double; Index = long int; DataMapper = Eigen::internal::blas_data_mapper; int nr = 4; bool Conjugate = false; bool PanelMode = true]': ../inst/include/Eigen/src/Core/products/TriangularSolverMatrix.h:155:19: required from 'static void Eigen::internal::triangular_solve_matrix::run(Index, Index, const Scalar*, Index, Scalar*, Index, Index, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 2; bool Conjugate = false; int TriStorageOrder = 0; int OtherInnerStride = 1]' ../inst/include/Eigen/src/Core/SolveTriangular.h:102:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; int Side = 1; int Mode = 2]' ../inst/include/Eigen/src/Core/SolveTriangular.h:182:21: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with int Side = 1; OtherDerived = Eigen::Matrix; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Core/TriangularMatrix.h:522:37: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::solveInPlace(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Core/TriangularMatrix.h:552:25: required from 'void Eigen::TriangularViewImpl<_MatrixType, _Mode, Eigen::Dense>::_solve_impl(const RhsType&, DstType&) const [with RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; DstType = Eigen::Matrix; _MatrixType = const Eigen::Block, -1, -1, false>; unsigned int _Mode = 2]' ../inst/include/Eigen/src/Core/Solve.h:147:26: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Matrix; DecType = Eigen::TriangularView, -1, -1, false>, 2>; RhsType = Eigen::CwiseNullaryOp, Eigen::Matrix >; Scalar = double; SrcXprType = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >; Func = assign_op]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:797:41: required from 'Derived& Eigen::PlainObjectBase::_set_noalias(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:883:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >; OtherDerived = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Solve, -1, -1, false>, 2>, Eigen::CwiseNullaryOp, Eigen::Matrix > >; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = -1]' fastLm.cpp:104:43: required from here ../inst/include/Eigen/src/Core/products/GeneralBlockPanelKernel.h:2459:62: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 2459 | PacketBlock kernel; | ^~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false> >': ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:527:76: required from 'struct Eigen::internal::product_evaluator, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1>, 3, Eigen::DenseShape, Eigen::DenseShape, double, double>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:29:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1> >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1>; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1>; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/PlainObjectBase.h:883:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix >, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix >, 1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::Matrix >, 1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::Matrix >, 1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::Matrix >, 1, -1, false>' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:183:72: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:112:58: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; Functor = Eigen::internal::add_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Map, 0, Eigen::Stride<0, 0> >; Src = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 2, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:121:58: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, -1, true> >': ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, 2, -1, true> >' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:217:20: required from 'PacketType Eigen::internal::evaluator >::packet(Eigen::Index) const [with int LoadMode = 0; PacketType = __vector(2) double; ArgType = const Eigen::CwiseUnaryOp, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/CoreEvaluators.h:603:81: required from 'PacketType Eigen::internal::unary_evaluator, Eigen::internal::IndexBased>::packet(Eigen::Index) const [with int LoadMode = 0; PacketType = __vector(2) double; UnaryOp = Eigen::internal::scalar_sqrt_op; ArgType = const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1>; typename Eigen::CwiseUnaryOp::Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:681:114: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignPacket(Eigen::Index) [with int StoreMode = 16; int LoadMode = 0; PacketType = __vector(2) double; DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> > >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:437:75: required from 'static void Eigen::internal::dense_assignment_loop::run(Kernel&) [with Kernel = Eigen::internal::generic_dense_assignment_kernel >, Eigen::internal::evaluator, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> > >, Eigen::internal::assign_op, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:785:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:121:58: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false> >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false> >, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:344:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false>, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 1, -1, false> >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, 1, -1, false> >, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:129:63: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, 1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, -1, -1, false>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>' ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:166:45: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:369:35: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, false>, const Eigen::Block, -1, 1, true>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, -1, 1, true>, -1, 1, false>; bool NeedToTranspose = false; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>, -1, 1, false>; Derived = Eigen::Block, -1, 1, false>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:372:86: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, true>, -1, 1, false> >, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, true>, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:32: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:48: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, 1, -1, true>, 1, -1, false>; int Mode = 5; Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >; Rhs = const Eigen::Block, -1, -1, false>, -1, -1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:783:113: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:150:68: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': ../inst/include/Eigen/src/Core/DenseBase.h:179:81: required from 'class Eigen::DenseBase, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: required from 'static void Eigen::internal::product_triangular_matrix_matrix::run(Index, Index, Index, const Scalar*, Index, const Scalar*, Index, Scalar*, Index, Index, const Scalar&, Eigen::internal::level3_blocking&) [with Scalar = double; Index = long int; int Mode = 5; int LhsStorageOrder = 0; bool ConjugateLhs = false; int RhsStorageOrder = 0; bool ConjugateRhs = false; int ResInnerStride = 1; int Version = 0]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:443:12: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Householder/Householder.h:78:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Block, -1, -1, false>; int Mode = 5; bool LhsIsTriangular = true; Lhs = const Eigen::Block, -1, -1, false>; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 0>' ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::OuterStride<> >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:39:18: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:78:57: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' ../inst/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:78:73: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:78:72: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long int; int Mode = 2; bool Conjugate = false]' ../inst/include/Eigen/src/Core/SolveTriangular.h:73:12: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, 1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Transpose >, 0>, 1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Transpose >, 0>, 1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:43: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false> >, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, false> >, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false>, -1, 1, false> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:375:18: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:43: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::Block, 1, 1, false>; Functor = swap_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::Block, 1, 1, false>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::Block, 1, 1, false>; Func = swap_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::Block, 1, 1, false>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/DenseBase.h:424:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, 1, 1, false>; Derived = Eigen::Block, 1, 1, false>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:1033:18: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:99:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/util/BlasUtil.h:506:13: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true>, 1, -1, false> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, true>, 1, -1, false> >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>' ../inst/include/Eigen/src/Core/VectorBlock.h:56:47: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:54: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false> >, -1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false> >, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false> >, -1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/PlainObjectBase.h:883:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 1, -1, false>; U = Eigen::Block, -1, 1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/PlainObjectBase.h:883:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false>, -1, 1, false>, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >]' ../inst/include/Eigen/src/Core/Assign.h:66:28: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:291:58: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false>, -1, -1, false> >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, 1, -1, false>; U = Eigen::Block, 1, -1, false> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:344:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, -1, false>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, Eigen::Block, -1, 1, false>, 0>; ExpressionType = Eigen::Block, -1, 1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Cholesky/LDLT.h:361:25: required from 'static bool Eigen::internal::ldlt_inplace<1>::unblocked(MatrixType&, TranspositionType&, Workspace&, Eigen::internal::SignMatrix&) [with MatrixType = Eigen::Matrix; TranspositionType = Eigen::Transpositions<-1, -1, int>; Workspace = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LDLT.h:526:51: required from 'Eigen::LDLT<_MatrixType, _UpLo>& Eigen::LDLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LDLT.h:120:14: required from 'Eigen::LDLT::LDLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:133:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from ../inst/include/Eigen/Core:337: ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h: In instantiation of 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]': ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:229:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:805:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: required from 'static void Eigen::internal::Assignment, Eigen::internal::assign_op, Eigen::internal::Dense2Dense, typename Eigen::internal::enable_if<((Options == Eigen::DefaultProduct) || (Options == Eigen::AliasFreeProduct))>::type>::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int Options = 0; Scalar = double; SrcXprType = Eigen::Product, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, 0>]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:369:35: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:62:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 62 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, IsRowMajor), ConjugateRhs> pcj0; | ^~~~ ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:62:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:63:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 63 | conj_helper::IsComplex && EIGEN_LOGICAL_XOR(ConjugateLhs, !IsRowMajor), ConjugateRhs> pcj1; | ^~~~ ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:63:121: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, -1, false>; U = Eigen::Block, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::Block, 1, 1, false>; Functor = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, 1, false>; SrcXprType = Eigen::Block, 1, 1, false>; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::Block, 1, 1, false>; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::Block, 1, 1, false>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, 1, 1, false>; Src = Eigen::Block, 1, 1, false>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, member_sum, 1> >, 2>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, -1, -1, false>, 2>, Eigen::Matrix > >, Eigen::internal::member_sum, 1> >, 2>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:99:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::InnerStride<> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::InnerStride<> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::InnerStride<> > >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::InnerStride<> >, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:106: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:77: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 0>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 0>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0> >' ../inst/include/Eigen/src/Core/Diagonal.h:63:53: required from 'class Eigen::Diagonal, 0>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Diagonal, 0>; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Diagonal, 0>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:153:42: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::Matrix >, 1, -1, false> >': ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Matrix >, 1, -1, false> >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, const Eigen::Matrix >, 1, -1, false>; ResultType = double; Scalar = double]' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Matrix >; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/CoreEvaluators.h:589:40: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Functor = Eigen::internal::assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, member_sum, 1> >]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Matrix >, Eigen::internal::member_sum, 1> >; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:112:58: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 6; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose, -1, -1, false> >; Rhs = Eigen::Block, -1, -1, false>; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:74: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, true>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, -1, 1, true> >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, -1, 1, true>; ResultType = double; Scalar = double]' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Solve, 1>, Eigen::Matrix > >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/CoreEvaluators.h:589:40: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:129:63: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, -1, -1, false>, 1, -1, false>; U = Eigen::Block, -1, 1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 1, -1, true> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, false> >, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from ../inst/include/Eigen/Core:166: ../inst/include/Eigen/src/Core/util/Memory.h: In instantiation of 'Index Eigen::internal::first_default_aligned(const Scalar*, Index) [with Scalar = double; Index = long int]': ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:89:68: required from 'static void Eigen::internal::selfadjoint_matrix_vector_product::run(Index, const Scalar*, Index, const Scalar*, Scalar*, Scalar) [with Scalar = double; Index = long int; int StorageOrder = 0; int UpLo = 1; bool ConjugateLhs = false; bool ConjugateRhs = false; int Version = 0]' ../inst/include/Eigen/src/Core/products/SelfadjointMatrixVector.h:229:7: required from 'static void Eigen::internal::selfadjoint_product_impl::run(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::Block, -1, -1, false>; int LhsMode = 17; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:805:109: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; int ProductTag = 7; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>; Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Block, -1, 1, false>; Lhs = Eigen::SelfAdjointView, -1, -1, false>, 1>; Rhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >; Derived = Eigen::internal::generic_product_impl, -1, -1, false>, 1>, Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::SelfAdjointShape, Eigen::DenseShape, 7>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:369:35: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, CoeffVectorType&) [with MatrixType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:449:31: required from 'static void Eigen::internal::tridiagonalization_inplace_selector::run(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; MatrixType = Eigen::Matrix; int Size = -1; bool IsComplex = false; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/Tridiagonalization.h:434:55: required from 'void Eigen::internal::tridiagonalization_inplace(MatrixType&, DiagonalType&, SubDiagonalType&, CoeffVectorType&, bool) [with MatrixType = Eigen::Matrix; DiagonalType = Eigen::Matrix; SubDiagonalType = Eigen::Matrix; CoeffVectorType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:458:39: required from 'Eigen::SelfAdjointEigenSolver& Eigen::SelfAdjointEigenSolver<_MatrixType>::compute(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h:181:14: required from 'Eigen::SelfAdjointEigenSolver<_MatrixType>::SelfAdjointEigenSolver(const Eigen::EigenBase&, int) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix]' fastLm.cpp:180:69: required from here ../inst/include/Eigen/src/Core/util/Memory.h:500:60: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 500 | return first_aligned::alignment>(array, size); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:305:153: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, -1, -1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false>, -1, -1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, 1, false> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, 1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, 1, false> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:37: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, 1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, 1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; int ProductTag = 4; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/PlainObjectBase.h:883:25: required from 'void Eigen::PlainObjectBase::_init1(const Eigen::DenseBase&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::Product, Eigen::Block, -1, 1, false>, 0>]' ../inst/include/Eigen/src/Core/Assign.h:66:28: required from 'Derived& Eigen::MatrixBase::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Block, -1, 1, false>, 0>; Derived = Eigen::Block, -1, 1, false>]' fastLm.cpp:106:61: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, 1, -1, false> >, const Eigen::Block, 1, -1, false> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:344:23: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, 1, -1, false> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, -1, false>, 1, -1, false> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Cholesky/LLT.h:332:38: required from 'static Eigen::Index Eigen::internal::llt_inplace::unblocked(MatrixType&) [with MatrixType = Eigen::Block, -1, -1, false>; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:363:24: required from 'static Eigen::Index Eigen::internal::llt_inplace::blocked(MatrixType&) [with MatrixType = Eigen::Matrix; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Cholesky/LLT.h:408:68: required from 'static bool Eigen::internal::LLT_Traits::inplace_decomposition(MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/Cholesky/LLT.h:456:42: required from 'Eigen::LLT<_MatrixType, _UpLo>& Eigen::LLT::compute(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' ../inst/include/Eigen/src/Cholesky/LLT.h:109:14: required from 'Eigen::LLT::LLT(const Eigen::EigenBase&) [with InputType = Eigen::SelfAdjointView, 1>; _MatrixType = Eigen::Matrix; int _UpLo = 1]' fastLm.cpp:126:50: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, true>, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Derived = Eigen::Block, -1, 1, true>, -1, 1, false> >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, true>, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::VectorBlock, -1, 1, true>, -1>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:550:35: required from 'void Eigen::ColPivHouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:477:3: required from 'Eigen::ColPivHouseholderQR<_MatrixType>& Eigen::ColPivHouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/ColPivHouseholderQR.h:137:14: required from 'Eigen::ColPivHouseholderQR::ColPivHouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:92:37: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Map, 0, Eigen::Stride<0, 0> >; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::OuterStride<> >, -1, 1, true>, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve >, Eigen::Map, 0, Eigen::Stride<0, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:96:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, 1, -1, false> >, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:97:23: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:151:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' ../inst/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' ../inst/include/Eigen/src/Core/Matrix.h:178:7: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, -1, false>, 5>, Eigen::Matrix, 0>; ExpressionType = Eigen::Block, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/products/TriangularSolverVector.h:78:127: required from 'static void Eigen::internal::triangular_solve_vector::run(Index, const LhsScalar*, Index, RhsScalar*) [with LhsScalar = double; RhsScalar = double; Index = long int; int Mode = 2; bool Conjugate = false]' ../inst/include/Eigen/src/Core/SolveTriangular.h:73:12: required from 'static void Eigen::internal::triangular_solver_selector::run(const Lhs&, Rhs&) [with Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; int Side = 1; int Mode = 2]' ../inst/include/Eigen/src/Core/SolveTriangular.h:182:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, -1, 1, true>; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Block, -1, 1, true>; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, -1, 1, true> >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, -1, 1, true>; ResultType = double; Scalar = double]' ../inst/include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = const Eigen::CwiseUnaryOp, const Eigen::Solve, 1>, Eigen::Matrix > >; MemberOp = Eigen::internal::member_sum; int Direction = 0; Scalar = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/CoreEvaluators.h:589:40: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, member_sum, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::PartialReduxExpr, const Eigen::Solve, 1>, Eigen::Matrix > >, Eigen::internal::member_sum, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:129:63: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, Eigen::Transpose >, 0>, 1, -1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, -1, false>, 1, -1, false> >, const Eigen::Block, -1, 1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:304:43: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> >, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, 1, false> >, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, -1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, -1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, -1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, -1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, -1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 2>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:101:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 2; bool LhsIsTriangular = true; Lhs = Eigen::Matrix; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 2>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:101:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, -1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, 1>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:59: required from 'static void Eigen::internal::triangular_product_impl::run(Dest&, const Lhs&, const Rhs&, const typename Dest::Scalar&) [with Dest = Eigen::Matrix; int Mode = 1; bool LhsIsTriangular = true; Lhs = const Eigen::Transpose >; Rhs = Eigen::Matrix; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:770:14: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, 1>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, 1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, 1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, 1, 1, false> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:59:31: required from 'ExpressionType& Eigen::NoAlias::operator-=(const StorageBase&) [with OtherDerived = Eigen::Product, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, false> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; ExpressionType = Eigen::Block, -1, -1, false>, -1, -1, false>; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:132:22: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 16, Eigen::Stride<0, 0> > >; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:305:153: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>, -1, -1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, -1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false>, -1, -1, true> >; Derived = Eigen::Block, -1, -1, false>, -1, -1, true>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:103:17: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::OuterStride<> >, 1, -1, true>, 1, -1, false>, const Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, false> > >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:137:114: required from 'static void Eigen::internal::triangular_matrix_vector_product::run(Index, Index, const LhsScalar*, Index, const RhsScalar*, Index, ResScalar*, Index, const ResScalar&) [with Index = long int; int Mode = 6; LhsScalar = double; bool ConjLhs = false; RhsScalar = double; bool ConjRhs = false; int Version = 0; ResScalar = double]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:332:12: required from 'static void Eigen::internal::trmv_selector::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose, -1, -1, false>, -1, -1, false> >; Rhs = Eigen::Transpose, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >; Dest = Eigen::Transpose, 1, -1, true>, 1, -1, false> >; int Mode = 6; typename Dest::Scalar = double]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:194:18: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: [ skipping 26 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false>, -1, 1, true>, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 24 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, true>, 1, -1, false> >, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> > > >, -1, 1, false> >; Derived = Eigen::Block, 1, -1, true>, 1, -1, false> >, -1, 1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixVector.h:341:27: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:63:43: required from 'void Eigen::internal::make_block_householder_triangular_factor(TriangularFactorType&, const VectorsType&, const CoeffsType&) [with TriangularFactorType = Eigen::Matrix; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:92:55: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >, -1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:423:29: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const Eigen::EigenBase&) [with OtherDerived = Eigen::Product, -1, -1, false> >, 6>, Eigen::Block, -1, -1, false>, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, -1, false>, -1, 1, true>; Derived = Eigen::Block, -1, -1, false>, -1, 1, true>, -1, 1, false> >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/QR/HouseholderQR.h:296:35: required from 'void Eigen::internal::householder_qr_inplace_unblocked(MatrixQR&, HCoeffs&, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Block, -1, -1, false>; HCoeffs = Eigen::Block, -1, 1, false>; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:345:39: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false> >, 1, -1, true>; U = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true>; Derived = Eigen::Block, -1, 1, false> >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/HouseholderSequence.h:307:42: required from 'void Eigen::HouseholderSequence::evalTo(Dest&, Workspace&) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:232:56: required from 'bool Eigen::internal::qr_preconditioner_impl::run(Eigen::JacobiSVD&, const MatrixType&) [with MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:692:30: required from 'Eigen::JacobiSVD& Eigen::JacobiSVD::compute(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:549:14: required from 'Eigen::JacobiSVD::JacobiSVD(const MatrixType&, unsigned int) [with _MatrixType = Eigen::Matrix; int QRPreconditioner = 2; MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/SVD/JacobiSVD.h:807:10: required from 'Eigen::JacobiSVD::PlainObject> Eigen::MatrixBase::jacobiSvd(unsigned int) const [with Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::DenseBase::PlainObject = Eigen::Matrix]' fastLm.cpp:170:38: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Block, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, 1, -1, true> >, const Eigen::Block, -1, -1, false>, -1, -1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:75: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Transpose, -1, 1, false> >; Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; int ProductTag = 3; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Block, -1, -1, false>, -1, -1, false>; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Transpose, -1, 1, false> >; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:654:63: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignCoeff(Eigen::Index, Eigen::Index) [with DstEvaluatorTypeT = Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >; SrcEvaluatorTypeT = Eigen::internal::evaluator, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:668:16: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/NoAlias.h:43:31: required from 'ExpressionType& Eigen::NoAlias::operator=(const StorageBase&) [with OtherDerived = Eigen::Product, -1, 1, false> >, Eigen::Block, -1, -1, false>, -1, -1, false>, 0>; ExpressionType = Eigen::Map, 0, Eigen::Stride<0, 0> >; StorageBase = Eigen::MatrixBase]' ../inst/include/Eigen/src/Householder/Householder.h:129:19: required from 'void Eigen::MatrixBase::applyHouseholderOnTheLeft(const EssentialPart&, const Scalar&, Scalar*) [with EssentialPart = Eigen::Block, -1, 1, false>; Derived = Eigen::Block, -1, -1, false>; Scalar = double]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:410:39: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, false>; SrcXprType = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, false>; Src = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::Block, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false>; Derived = Eigen::Block, -1, -1, false>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:457:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, -1, true>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Func = sub_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:164:18: required from 'Derived& Eigen::MatrixBase::operator-=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, -1, -1, false> >; Derived = Eigen::Block, -1, -1, true>]' ../inst/include/Eigen/src/Core/products/TriangularMatrixMatrix.h:462:32: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Householder/BlockHouseholder.h:99:78: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/QR/HouseholderQR.h:350:44: required from 'static void Eigen::internal::householder_qr_inplace_blocked::run(MatrixQR&, HCoeffs&, Eigen::Index, typename MatrixQR::Scalar*) [with MatrixQR = Eigen::Matrix; HCoeffs = Eigen::Matrix; MatrixQRScalar = double; bool InnerStrideIsOne = true; Eigen::Index = long int; typename MatrixQR::Scalar = double]' ../inst/include/Eigen/src/QR/HouseholderQR.h:416:73: required from 'void Eigen::HouseholderQR::computeInPlace() [with _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:181:7: required from 'Eigen::HouseholderQR& Eigen::HouseholderQR::compute(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' ../inst/include/Eigen/src/QR/HouseholderQR.h:114:14: required from 'Eigen::HouseholderQR::HouseholderQR(const Eigen::EigenBase&) [with InputType = Eigen::Map, 0, Eigen::Stride<0, 0> >; _MatrixType = Eigen::Matrix]' fastLm.cpp:117:30: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Matrix, 2, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Matrix, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Matrix, 2>' ../inst/include/Eigen/src/Cholesky/LDLT.h:577:26: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:141:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, Eigen::Matrix, 2>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, Eigen::Matrix, 2> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base > >, Eigen::Matrix, 2, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl > >, Eigen::Matrix, 2, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product > >, Eigen::Matrix, 2>' ../inst/include/Eigen/src/Cholesky/LDLT.h:610:38: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 1>, Eigen::Matrix >, 0> > >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:141:62: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block >, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block >, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block >, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, const Eigen::Block >, -1, 1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, const Eigen::Block >, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, const Eigen::Block >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false> >' ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, const Eigen::Block >, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; Scalar = double]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, Eigen::Transpose >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, Eigen::Transpose >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, Eigen::Transpose >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, 1, -1, false>, Eigen::Transpose >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, 1, -1, false>, Eigen::Transpose >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, 1, -1, false>, Eigen::Transpose >, 0>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> > >, -1, 1, false, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/util/XprHelper.h:372:102: required from 'struct Eigen::internal::plain_object_eval, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:370:45: required from 'struct Eigen::internal::generic_product_impl, Eigen::Transpose >, 0>, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, Eigen::DenseShape, Eigen::DenseShape, 7>' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:479:24: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Product, Eigen::Transpose >, 0>; Rhs = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; Scalar = double]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:445:20: required from 'static void Eigen::internal::generic_product_impl::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Product, Eigen::Transpose >, 0>; Rhs = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0, 7>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, 1, -1, false>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:345:45: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> > >, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 1, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 1>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:462:68: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false>, 1, -1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1> >' ../inst/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, 8>' ../inst/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, Eigen::Dense>' ../inst/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:462:68: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' ../inst/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/products/GeneralMatrixMatrix.h:444:18: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true>, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true>, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true>, 0>' ../inst/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true, true>' ../inst/include/Eigen/src/Core/Block.h:154:7: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true>, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/Block.h:172:103: required from 'class Eigen::internal::BlockImpl_dense, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true, false>' ../inst/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true, Eigen::Dense>' ../inst/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true>' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:43: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = swap_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, true>; SrcXprType = Eigen::Block, -1, 1, true>; Functor = Eigen::internal::swap_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, true>; Src = Eigen::Block, -1, 1, true>; Func = swap_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/DenseBase.h:424:22: required from 'void Eigen::DenseBase::swap(const Eigen::DenseBase&) [with OtherDerived = Eigen::Block, -1, 1, true>; Derived = Eigen::Block, -1, 1, true>]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:1129:51: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:139:46: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true> >, 1>' ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, true> >, 3>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > > >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > > >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > > > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> > > >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:26: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' ../inst/include/Eigen/src/Core/GeneralProduct.h:207:43: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, -1, false> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, -1, false> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, -1, false> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, 2>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:101:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> > >' ../inst/include/Eigen/src/Core/AssignEvaluator.h:774:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = sub_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, -1, true>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block >, -1, -1, true> >; Functor = Eigen::internal::sub_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product >, 1>, Eigen::Matrix, 0>; _Scalar = double; int _Rows = -1; int _Cols = -1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Householder/BlockHouseholder.h:102:19: required from 'void Eigen::internal::apply_block_householder_on_the_left(MatrixType&, const VectorsType&, const CoeffsType&, bool) [with MatrixType = Eigen::Block, -1, -1, false>; VectorsType = Eigen::Block, -1, -1, false>; CoeffsType = Eigen::VectorBlock, -1>]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:399:46: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, Workspace&, bool) const [with Dest = Eigen::Matrix; Workspace = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:364:25: required from 'void Eigen::HouseholderSequence::applyThisOnTheLeft(Dest&, bool) const [with Dest = Eigen::Matrix; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1]' ../inst/include/Eigen/src/Householder/HouseholderSequence.h:427:25: required from 'typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type Eigen::HouseholderSequence::operator*(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; VectorsType = Eigen::Matrix; CoeffsType = Eigen::Matrix; int Side = 1; typename Eigen::internal::matrix_type_times_scalar_type >::Scalar, OtherDerived>::Type = Eigen::Matrix; typename Eigen::internal::traits >::Scalar = double]' fastLm.cpp:105:67: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> > >, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> > >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 1, -1, false>; U = Eigen::Block >, -1, 1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, true> >, 2>' ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 1, -1, false>, 1, -1, true>; U = Eigen::Block >, -1, 1, false>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>; U = Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true>, Eigen::Dense>' ../inst/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/Dot.h:50:23: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, 1, -1, false>, 1, -1, true> >, const Eigen::Block >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> > >' ../inst/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >': ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, Eigen::internal::IndexBased, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> > >' ../inst/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, Eigen::Transpose >, 0>, 1, -1, false>, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' ../inst/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 21 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block >, -1, 1, false> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Matrix; Rhs = Eigen::Transpose >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Matrix; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:164:36: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >, 0>': ../inst/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> > >' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false>, Eigen::Dense>' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Block, 0, Eigen::Stride<0, 0> > >, -1, 1, false> >' ../inst/include/Eigen/src/Core/ProductEvaluators.h:606:52: required from 'const Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::CoeffReturnType Eigen::internal::product_evaluator, ProductTag, Eigen::DenseShape, Eigen::DenseShape>::coeff(Eigen::Index, Eigen::Index) const [with Lhs = Eigen::Product, Eigen::Transpose >, 0>; Rhs = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; int ProductTag = 8; typename Eigen::internal::traits::Rhs>::Scalar = double; typename Eigen::Product::Rhs = Eigen::Transpose, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Lhs>::Scalar = double; typename Eigen::Product::Lhs = Eigen::Product, Eigen::Transpose >, 0>; CoeffReturnType = double; Eigen::Index = long int]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:654:63: [ skipping 19 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] ../inst/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': ../inst/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> > >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ResScalar = double]' ../inst/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> > >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' ../inst/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Func = assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Solve, 1>, Eigen::Product, 0, Eigen::Stride<0, 0> > >, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0> >; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:127:46: required from here ../inst/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ ../inst/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': ../inst/include/Eigen/src/Core/AssignEvaluator.h:780:20: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >; Functor = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:954:31: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Block, -1, 1, false>; SrcXprType = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >; Functor = Eigen::internal::add_assign_op; Weak = void]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >; Func = add_assign_op]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:858:27: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if<(! evaluator_assume_aliasing::value), void*>::type) [with Dst = Eigen::Block, -1, 1, false>; Src = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >; Func = add_assign_op; typename enable_if<(! evaluator_assume_aliasing::value), void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/CwiseBinaryOp.h:177:18: required from 'Derived& Eigen::MatrixBase::operator+=(const Eigen::MatrixBase&) [with OtherDerived = Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 2, Eigen::Stride<0, 0> > >; Derived = Eigen::Block, -1, 1, false>]' ../inst/include/Eigen/src/Core/GeneralProduct.h:296:25: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] ../inst/include/Eigen/src/Core/Matrix.h:332:31: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::Matrix(const T&) [with T = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:850:41: required from 'void Eigen::internal::call_assignment(Dst&, const Src&, const Func&, typename enable_if::value, void*>::type) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Func = assign_op; typename enable_if::value, void*>::type = void*; typename evaluator_traits::Shape = Eigen::DenseShape]' ../inst/include/Eigen/src/Core/AssignEvaluator.h:836:18: required from 'void Eigen::internal::call_assignment(Dst&, const Src&) [with Dst = Eigen::Matrix; Src = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>]' ../inst/include/Eigen/src/Core/PlainObjectBase.h:779:32: required from 'Derived& Eigen::PlainObjectBase::_set(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; Derived = Eigen::Matrix]' ../inst/include/Eigen/src/Core/Matrix.h:225:24: required from 'Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& Eigen::Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::operator=(const Eigen::DenseBase&) [with OtherDerived = Eigen::Product, Eigen::Transpose >, 0>, Eigen::Transpose, 0, Eigen::Stride<0, 0> > >, 0>, Eigen::Map, 0, Eigen::Stride<0, 0> >, 0>; _Scalar = double; int _Rows = -1; int _Cols = 1; int _Options = 0; int _MaxRows = -1; int _MaxCols = 1]' fastLm.cpp:183:55: required from here ../inst/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppEigen.so RcppEigen.o RcppExports.o fastLm.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RcppEigen/00new/RcppEigen/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppEigen) * installing *source* package 'lhs' ... ** this is package 'lhs' version '1.2.0' ** package 'lhs' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c COrthogonalArray.cpp -o COrthogonalArray.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c GaloisField.cpp -o GaloisField.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ak3.cpp -o ak3.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c akconst.cpp -o akconst.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c akn.cpp -o akn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c construct.cpp -o construct.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c geneticLHS.cpp -o geneticLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c improvedLHS.cpp -o improvedLHS.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lhs_r.cpp -o lhs_r.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lhs_r_utilities.cpp -o lhs_r_utilities.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c maximinLHS.cpp -o maximinLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c oa.cpp -o oa.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c oaLHS.cpp -o oaLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c oa_r.cpp -o oa_r.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c oa_r_utils.cpp -o oa_r_utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c oalhs_r.cpp -o oalhs_r.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c optSeededLHS.cpp -o optSeededLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c optimumLHS.cpp -o optimumLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c primes.cpp -o primes.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c randomLHS.cpp -o randomLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c runif.cpp -o runif.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rutils.cpp -o rutils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DRCOMPILE -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utilityLHS.cpp -o utilityLHS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o lhs.so COrthogonalArray.o GaloisField.o ak3.o akconst.o akn.o construct.o geneticLHS.o improvedLHS.o init.o lhs_r.o lhs_r_utilities.o maximinLHS.o oa.o oaLHS.o oa_r.o oa_r_utils.o oalhs_r.o optSeededLHS.o optimumLHS.o primes.o randomLHS.o runif.o rutils.o utilityLHS.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-lhs/00new/lhs/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lhs) * installing *source* package 'spacefillr' ... ** this is package 'spacefillr' version '0.4.0' ** package 'spacefillr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c generate_point_functions.cpp -o generate_point_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o spacefillr.so RcppExports.o generate_point_functions.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-spacefillr/00new/spacefillr/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (spacefillr) * installing *source* package 'timereg' ... ** this is package 'timereg' version '2.0.7' ** package 'timereg' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Gprop-odds.c -o Gprop-odds.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalen.c -o aalen.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalenC.c -o aalenC.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c additive-compSs.c -o additive-compSs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c breslow.c -o breslow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comprisk.c -o comprisk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comptest-cmprsk.c -o comptest-cmprsk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comptest.c -o comptest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cox-aalen.c -o cox-aalen.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dynadd.c -o dynadd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ipcw-residualmean.c -o ipcw-residualmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mgresid.c -o mgresid.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pava.c -o pava.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pe-sasieni.c -o pe-sasieni.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pred.c -o pred.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-excess.c -o prop-excess.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odds-subdist2.c -o prop-odds-subdist2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odds.c -o prop-odds.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c smooth.c -o smooth.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c smooth2.c -o smooth2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timecox.c -o timecox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timeregister.c -o timeregister.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c two-stage-reg.c -o two-stage-reg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c unifConfBandResampling.c -o unifConfBandResampling.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o timereg.so Gprop-odds.o aalen.o aalenC.o additive-compSs.o breslow.o comprisk.o comptest-cmprsk.o comptest.o cox-aalen.o dynadd.o ipcw-residualmean.o matrix.o mgresid.o pava.o pe-sasieni.o pred.o prop-excess.o prop-odds-subdist2.o prop-odds.o smooth.o smooth2.o timecox.o timeregister.o two-stage-reg.o unifConfBandResampling.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-timereg/00new/timereg/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (timereg) * installing *source* package 'BWStest' ... ** this is package 'BWStest' version '0.2.3' ** package 'BWStest' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bws_init.cpp -o bws_init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bws_stat.cpp -o bws_stat.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c murakami_stat.cpp -o murakami_stat.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o BWStest.so RcppExports.o bws_init.o bws_stat.o murakami_stat.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-BWStest/00new/BWStest/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (BWStest) * installing *source* package 's2' ... ** this is package 's2' version '1.1.9' ** package 's2' successfully unpacked and MD5 sums checked ** using staged installation Found OpenSSL pkg-config cflags and libs! Testing compiler OpenSSL configuration using PKG_CFLAGS=-I/home/th798/.conda/envs/emacs1/include ** Using PKG_CONFIG_PATH=/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig:/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/pkgconfig ** Building abseil-cpp using cmake GNU Make 4.2.1 Built for x86_64-redhat-linux-gnu Copyright (C) 1988-2016 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Using MAKE=make cmake version 3.22.1 CMake suite maintained and supported by Kitware (kitware.com/cmake). Using CMAKE=/home/th798/.conda/envs/emacs1/bin/cmake Using MAKE=make -- The CXX compiler identification is GNU 12.2.0 -- Detecting CXX compiler ABI info -- Detecting CXX compiler ABI info - done -- Check for working CXX compiler: /packages/gcc/12.2.0-nnbserq/bin/g++ - skipped -- Detecting CXX compile features -- Detecting CXX compile features - done -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 -- Performing Test ABSL_INTERNAL_AT_LEAST_CXX17 - Success -- Looking for C++ include pthread.h -- Looking for C++ include pthread.h - found -- Performing Test CMAKE_HAVE_LIBC_PTHREAD -- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed -- Looking for pthread_create in pthreads -- Looking for pthread_create in pthreads - not found -- Looking for pthread_create in pthread -- Looking for pthread_create in pthread - found -- Found Threads: TRUE -- Configuring done -- Generating done -- Build files have been written to: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/build/abseil-cpp [ 0%] Building CXX object absl/base/CMakeFiles/log_severity.dir/log_severity.cc.o [ 1%] Linking CXX static library libabsl_log_severity.a [ 1%] Built target log_severity [ 2%] Building CXX object absl/base/CMakeFiles/raw_logging_internal.dir/internal/raw_logging.cc.o [ 2%] Linking CXX static library libabsl_raw_logging_internal.a [ 2%] Built target raw_logging_internal [ 2%] Building CXX object absl/base/CMakeFiles/spinlock_wait.dir/internal/spinlock_wait.cc.o [ 3%] Linking CXX static library libabsl_spinlock_wait.a [ 3%] Built target spinlock_wait [ 3%] Building CXX object absl/base/CMakeFiles/base.dir/internal/cycleclock.cc.o [ 4%] Building CXX object absl/base/CMakeFiles/base.dir/internal/spinlock.cc.o [ 4%] Building CXX object absl/base/CMakeFiles/base.dir/internal/sysinfo.cc.o [ 5%] Building CXX object absl/base/CMakeFiles/base.dir/internal/thread_identity.cc.o [ 5%] Building CXX object absl/base/CMakeFiles/base.dir/internal/unscaledcycleclock.cc.o [ 6%] Linking CXX static library libabsl_base.a [ 6%] Built target base [ 7%] Building CXX object absl/base/CMakeFiles/malloc_internal.dir/internal/low_level_alloc.cc.o [ 7%] Linking CXX static library libabsl_malloc_internal.a [ 7%] Built target malloc_internal [ 7%] Building CXX object absl/base/CMakeFiles/throw_delegate.dir/internal/throw_delegate.cc.o [ 8%] Linking CXX static library libabsl_throw_delegate.a [ 8%] Built target throw_delegate [ 8%] Building CXX object absl/base/CMakeFiles/scoped_set_env.dir/internal/scoped_set_env.cc.o [ 9%] Linking CXX static library libabsl_scoped_set_env.a [ 9%] Built target scoped_set_env [ 9%] Building CXX object absl/base/CMakeFiles/strerror.dir/internal/strerror.cc.o [ 10%] Linking CXX static library libabsl_strerror.a [ 10%] Built target strerror [ 11%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_fixed.cc.o [ 11%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_format.cc.o [ 12%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_if.cc.o [ 12%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_impl.cc.o [ 12%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_info.cc.o [ 13%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_libc.cc.o [ 13%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_lookup.cc.o [ 14%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/time_zone_posix.cc.o [ 14%] Building CXX object absl/time/CMakeFiles/time_zone.dir/internal/cctz/src/zone_info_source.cc.o [ 15%] Linking CXX static library libabsl_time_zone.a [ 15%] Built target time_zone [ 15%] Building CXX object absl/debugging/CMakeFiles/debugging_internal.dir/internal/address_is_readable.cc.o [ 16%] Building CXX object absl/debugging/CMakeFiles/debugging_internal.dir/internal/elf_mem_image.cc.o [ 16%] Building CXX object absl/debugging/CMakeFiles/debugging_internal.dir/internal/vdso_support.cc.o [ 17%] Linking CXX static library libabsl_debugging_internal.a [ 17%] Built target debugging_internal [ 17%] Building CXX object absl/debugging/CMakeFiles/stacktrace.dir/stacktrace.cc.o [ 18%] Linking CXX static library libabsl_stacktrace.a [ 18%] Built target stacktrace [ 18%] Building CXX object absl/strings/CMakeFiles/strings_internal.dir/internal/ostringstream.cc.o [ 19%] Building CXX object absl/strings/CMakeFiles/strings_internal.dir/internal/utf8.cc.o [ 19%] Building CXX object absl/strings/CMakeFiles/strings_internal.dir/internal/escaping.cc.o [ 19%] Linking CXX static library libabsl_strings_internal.a [ 19%] Built target strings_internal [ 19%] Building CXX object absl/debugging/CMakeFiles/demangle_internal.dir/internal/demangle.cc.o [ 19%] Linking CXX static library libabsl_demangle_internal.a [ 19%] Built target demangle_internal [ 20%] Building CXX object absl/numeric/CMakeFiles/int128.dir/int128.cc.o [ 20%] Linking CXX static library libabsl_int128.a [ 20%] Built target int128 [ 20%] Building CXX object absl/strings/CMakeFiles/string_view.dir/string_view.cc.o [ 20%] Linking CXX static library libabsl_string_view.a [ 20%] Built target string_view [ 21%] Building CXX object absl/strings/CMakeFiles/strings.dir/ascii.cc.o [ 21%] Building CXX object absl/strings/CMakeFiles/strings.dir/charconv.cc.o [ 22%] Building CXX object absl/strings/CMakeFiles/strings.dir/escaping.cc.o [ 22%] Building CXX object absl/strings/CMakeFiles/strings.dir/internal/charconv_bigint.cc.o [ 23%] Building CXX object absl/strings/CMakeFiles/strings.dir/internal/charconv_parse.cc.o [ 23%] Building CXX object absl/strings/CMakeFiles/strings.dir/internal/damerau_levenshtein_distance.cc.o [ 23%] Building CXX object absl/strings/CMakeFiles/strings.dir/internal/memutil.cc.o [ 24%] Building CXX object absl/strings/CMakeFiles/strings.dir/internal/stringify_sink.cc.o [ 24%] Building CXX object absl/strings/CMakeFiles/strings.dir/match.cc.o [ 25%] Building CXX object absl/strings/CMakeFiles/strings.dir/numbers.cc.o [ 25%] Building CXX object absl/strings/CMakeFiles/strings.dir/str_cat.cc.o [ 25%] Building CXX object absl/strings/CMakeFiles/strings.dir/str_replace.cc.o [ 26%] Building CXX object absl/strings/CMakeFiles/strings.dir/str_split.cc.o [ 26%] Building CXX object absl/strings/CMakeFiles/strings.dir/substitute.cc.o [ 27%] Linking CXX static library libabsl_strings.a [ 27%] Built target strings [ 28%] Building CXX object absl/debugging/CMakeFiles/symbolize.dir/symbolize.cc.o [ 28%] Linking CXX static library libabsl_symbolize.a [ 28%] Built target symbolize [ 29%] Building CXX object absl/profiling/CMakeFiles/exponential_biased.dir/internal/exponential_biased.cc.o [ 29%] Linking CXX static library libabsl_exponential_biased.a [ 29%] Built target exponential_biased [ 30%] Building CXX object absl/synchronization/CMakeFiles/graphcycles_internal.dir/internal/graphcycles.cc.o [ 30%] Linking CXX static library libabsl_graphcycles_internal.a [ 30%] Built target graphcycles_internal [ 31%] Building CXX object absl/time/CMakeFiles/civil_time.dir/internal/cctz/src/civil_time_detail.cc.o [ 31%] Linking CXX static library libabsl_civil_time.a [ 31%] Built target civil_time [ 31%] Building CXX object absl/time/CMakeFiles/time.dir/civil_time.cc.o [ 32%] Building CXX object absl/time/CMakeFiles/time.dir/clock.cc.o [ 32%] Building CXX object absl/time/CMakeFiles/time.dir/duration.cc.o [ 32%] Building CXX object absl/time/CMakeFiles/time.dir/format.cc.o [ 33%] Building CXX object absl/time/CMakeFiles/time.dir/time.cc.o [ 33%] Linking CXX static library libabsl_time.a [ 33%] Built target time [ 33%] Building CXX object absl/synchronization/CMakeFiles/kernel_timeout_internal.dir/internal/kernel_timeout.cc.o [ 34%] Linking CXX static library libabsl_kernel_timeout_internal.a [ 34%] Built target kernel_timeout_internal [ 35%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/barrier.cc.o [ 35%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/blocking_counter.cc.o [ 36%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/create_thread_identity.cc.o [ 36%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/futex_waiter.cc.o [ 36%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/per_thread_sem.cc.o [ 37%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/pthread_waiter.cc.o [ 37%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/sem_waiter.cc.o [ 38%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/stdcpp_waiter.cc.o [ 38%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/waiter_base.cc.o [ 39%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/internal/win32_waiter.cc.o [ 39%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/notification.cc.o [ 39%] Building CXX object absl/synchronization/CMakeFiles/synchronization.dir/mutex.cc.o [ 40%] Linking CXX static library libabsl_synchronization.a [ 40%] Built target synchronization [ 40%] Building CXX object absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler.cc.o [ 41%] Building CXX object absl/container/CMakeFiles/hashtablez_sampler.dir/internal/hashtablez_sampler_force_weak_definition.cc.o [ 41%] Linking CXX static library libabsl_hashtablez_sampler.a [ 41%] Built target hashtablez_sampler [ 42%] Building CXX object absl/types/CMakeFiles/bad_variant_access.dir/bad_variant_access.cc.o [ 42%] Linking CXX static library libabsl_bad_variant_access.a [ 42%] Built target bad_variant_access [ 42%] Building CXX object absl/hash/CMakeFiles/city.dir/internal/city.cc.o [ 42%] Linking CXX static library libabsl_city.a [ 42%] Built target city [ 42%] Building CXX object absl/hash/CMakeFiles/low_level_hash.dir/internal/low_level_hash.cc.o [ 42%] Linking CXX static library libabsl_low_level_hash.a [ 42%] Built target low_level_hash [ 43%] Building CXX object absl/types/CMakeFiles/bad_optional_access.dir/bad_optional_access.cc.o [ 43%] Linking CXX static library libabsl_bad_optional_access.a [ 43%] Built target bad_optional_access [ 43%] Building CXX object absl/hash/CMakeFiles/hash.dir/internal/hash.cc.o [ 44%] Linking CXX static library libabsl_hash.a [ 44%] Built target hash [ 45%] Building CXX object absl/container/CMakeFiles/raw_hash_set.dir/internal/raw_hash_set.cc.o [ 45%] Linking CXX static library libabsl_raw_hash_set.a [ 45%] Built target raw_hash_set [ 45%] Building CXX object absl/crc/CMakeFiles/crc_cpu_detect.dir/internal/cpu_detect.cc.o [ 46%] Linking CXX static library libabsl_crc_cpu_detect.a [ 46%] Built target crc_cpu_detect [ 46%] Building CXX object absl/crc/CMakeFiles/crc_internal.dir/internal/crc.cc.o [ 47%] Building CXX object absl/crc/CMakeFiles/crc_internal.dir/internal/crc_x86_arm_combined.cc.o [ 47%] Linking CXX static library libabsl_crc_internal.a [ 47%] Built target crc_internal [ 47%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/arg.cc.o [ 48%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/bind.cc.o [ 48%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/extension.cc.o [ 48%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/float_conversion.cc.o [ 49%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/output.cc.o [ 49%] Building CXX object absl/strings/CMakeFiles/str_format_internal.dir/internal/str_format/parser.cc.o [ 50%] Linking CXX static library libabsl_str_format_internal.a [ 50%] Built target str_format_internal [ 50%] Building CXX object absl/crc/CMakeFiles/crc32c.dir/crc32c.cc.o [ 51%] Building CXX object absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_fallback.cc.o [ 51%] Building CXX object absl/crc/CMakeFiles/crc32c.dir/internal/crc_memcpy_x86_64.cc.o [ 52%] Building CXX object absl/crc/CMakeFiles/crc32c.dir/internal/crc_non_temporal_memcpy.cc.o [ 52%] Linking CXX static library libabsl_crc32c.a [ 52%] Built target crc32c [ 52%] Building CXX object absl/crc/CMakeFiles/crc_cord_state.dir/internal/crc_cord_state.cc.o [ 53%] Linking CXX static library libabsl_crc_cord_state.a [ 53%] Built target crc_cord_state [ 54%] Building CXX object absl/debugging/CMakeFiles/examine_stack.dir/internal/examine_stack.cc.o [ 54%] Linking CXX static library libabsl_examine_stack.a [ 54%] Built target examine_stack [ 54%] Building CXX object absl/debugging/CMakeFiles/failure_signal_handler.dir/failure_signal_handler.cc.o [ 55%] Linking CXX static library libabsl_failure_signal_handler.a [ 55%] Built target failure_signal_handler [ 55%] Building CXX object absl/debugging/CMakeFiles/leak_check.dir/leak_check.cc.o [ 56%] Linking CXX static library libabsl_leak_check.a [ 56%] Built target leak_check [ 56%] Building CXX object absl/flags/CMakeFiles/flags_program_name.dir/internal/program_name.cc.o [ 57%] Linking CXX static library libabsl_flags_program_name.a [ 57%] Built target flags_program_name [ 58%] Building CXX object absl/flags/CMakeFiles/flags_config.dir/usage_config.cc.o [ 58%] Linking CXX static library libabsl_flags_config.a [ 58%] Built target flags_config [ 59%] Building CXX object absl/flags/CMakeFiles/flags_marshalling.dir/marshalling.cc.o [ 59%] Linking CXX static library libabsl_flags_marshalling.a [ 59%] Built target flags_marshalling [ 59%] Building CXX object absl/flags/CMakeFiles/flags_commandlineflag_internal.dir/internal/commandlineflag.cc.o [ 59%] Linking CXX static library libabsl_flags_commandlineflag_internal.a [ 59%] Built target flags_commandlineflag_internal [ 59%] Building CXX object absl/flags/CMakeFiles/flags_commandlineflag.dir/commandlineflag.cc.o [ 60%] Linking CXX static library libabsl_flags_commandlineflag.a [ 60%] Built target flags_commandlineflag [ 60%] Building CXX object absl/flags/CMakeFiles/flags_private_handle_accessor.dir/internal/private_handle_accessor.cc.o [ 61%] Linking CXX static library libabsl_flags_private_handle_accessor.a [ 61%] Built target flags_private_handle_accessor [ 61%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_internal.cc.o [ 62%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree.cc.o [ 62%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_navigator.cc.o [ 63%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_btree_reader.cc.o [ 63%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_crc.cc.o [ 64%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_consume.cc.o [ 64%] Building CXX object absl/strings/CMakeFiles/cord_internal.dir/internal/cord_rep_ring.cc.o [ 64%] Linking CXX static library libabsl_cord_internal.a [ 64%] Built target cord_internal [ 65%] Building CXX object absl/strings/CMakeFiles/cordz_functions.dir/internal/cordz_functions.cc.o [ 65%] Linking CXX static library libabsl_cordz_functions.a [ 65%] Built target cordz_functions [ 66%] Building CXX object absl/strings/CMakeFiles/cordz_handle.dir/internal/cordz_handle.cc.o [ 66%] Linking CXX static library libabsl_cordz_handle.a [ 66%] Built target cordz_handle [ 67%] Building CXX object absl/strings/CMakeFiles/cordz_info.dir/internal/cordz_info.cc.o [ 67%] Linking CXX static library libabsl_cordz_info.a [ 67%] Built target cordz_info [ 68%] Building CXX object absl/strings/CMakeFiles/cord.dir/cord.cc.o [ 68%] Building CXX object absl/strings/CMakeFiles/cord.dir/cord_analysis.cc.o [ 69%] Building CXX object absl/strings/CMakeFiles/cord.dir/cord_buffer.cc.o [ 69%] Linking CXX static library libabsl_cord.a [ 69%] Built target cord [ 69%] Building CXX object absl/flags/CMakeFiles/flags_reflection.dir/reflection.cc.o [ 69%] Linking CXX static library libabsl_flags_reflection.a [ 69%] Built target flags_reflection [ 70%] Building CXX object absl/flags/CMakeFiles/flags_internal.dir/internal/flag.cc.o [ 70%] Linking CXX static library libabsl_flags_internal.a [ 70%] Built target flags_internal [ 70%] Building CXX object absl/flags/CMakeFiles/flags.dir/flag.cc.o [ 71%] Linking CXX static library libabsl_flags.a [ 71%] Built target flags [ 72%] Building CXX object absl/flags/CMakeFiles/flags_usage_internal.dir/internal/usage.cc.o [ 72%] Linking CXX static library libabsl_flags_usage_internal.a [ 72%] Built target flags_usage_internal [ 73%] Building CXX object absl/flags/CMakeFiles/flags_usage.dir/usage.cc.o [ 73%] Linking CXX static library libabsl_flags_usage.a [ 73%] Built target flags_usage [ 73%] Building CXX object absl/flags/CMakeFiles/flags_parse.dir/parse.cc.o [ 74%] Linking CXX static library libabsl_flags_parse.a [ 74%] Built target flags_parse [ 74%] Building CXX object absl/log/CMakeFiles/log_internal_globals.dir/internal/globals.cc.o [ 74%] Linking CXX static library libabsl_log_internal_globals.a [ 74%] Built target log_internal_globals [ 74%] Building CXX object absl/log/CMakeFiles/log_internal_format.dir/internal/log_format.cc.o [ 75%] Linking CXX static library libabsl_log_internal_format.a [ 75%] Built target log_internal_format [ 75%] Building CXX object absl/log/CMakeFiles/log_internal_proto.dir/internal/proto.cc.o [ 76%] Linking CXX static library libabsl_log_internal_proto.a [ 76%] Built target log_internal_proto [ 77%] Building CXX object absl/log/CMakeFiles/log_globals.dir/globals.cc.o [ 77%] Linking CXX static library libabsl_log_globals.a [ 77%] Built target log_globals [ 77%] Building CXX object absl/log/CMakeFiles/log_entry.dir/log_entry.cc.o [ 77%] Linking CXX static library libabsl_log_entry.a [ 77%] Built target log_entry [ 77%] Building CXX object absl/log/CMakeFiles/log_sink.dir/log_sink.cc.o [ 78%] Linking CXX static library libabsl_log_sink.a [ 78%] Built target log_sink [ 79%] Building CXX object absl/log/CMakeFiles/log_internal_log_sink_set.dir/internal/log_sink_set.cc.o [ 79%] Linking CXX static library libabsl_log_internal_log_sink_set.a [ 79%] Built target log_internal_log_sink_set [ 80%] Building CXX object absl/log/CMakeFiles/log_internal_nullguard.dir/internal/nullguard.cc.o [ 80%] Linking CXX static library libabsl_log_internal_nullguard.a [ 80%] Built target log_internal_nullguard [ 81%] Building CXX object absl/log/CMakeFiles/log_internal_message.dir/internal/log_message.cc.o [ 81%] Linking CXX static library libabsl_log_internal_message.a [ 81%] Built target log_internal_message [ 81%] Building CXX object absl/log/CMakeFiles/log_internal_check_op.dir/internal/check_op.cc.o [ 82%] Linking CXX static library libabsl_log_internal_check_op.a [ 82%] Built target log_internal_check_op [ 82%] Building CXX object absl/log/CMakeFiles/log_internal_conditions.dir/internal/conditions.cc.o [ 83%] Linking CXX static library libabsl_log_internal_conditions.a [ 83%] Built target log_internal_conditions [ 84%] Building CXX object absl/log/CMakeFiles/die_if_null.dir/die_if_null.cc.o [ 84%] Linking CXX static library libabsl_die_if_null.a [ 84%] Built target die_if_null [ 85%] Building CXX object absl/log/CMakeFiles/log_flags.dir/flags.cc.o [ 85%] Linking CXX static library libabsl_log_flags.a [ 85%] Built target log_flags [ 86%] Building CXX object absl/log/CMakeFiles/log_initialize.dir/initialize.cc.o [ 86%] Linking CXX static library libabsl_log_initialize.a [ 86%] Built target log_initialize [ 87%] Building CXX object absl/profiling/CMakeFiles/periodic_sampler.dir/internal/periodic_sampler.cc.o [ 87%] Linking CXX static library libabsl_periodic_sampler.a [ 87%] Built target periodic_sampler [ 88%] Building CXX object absl/random/CMakeFiles/random_distributions.dir/discrete_distribution.cc.o [ 88%] Building CXX object absl/random/CMakeFiles/random_distributions.dir/gaussian_distribution.cc.o [ 88%] Linking CXX static library libabsl_random_distributions.a [ 88%] Built target random_distributions [ 88%] Building CXX object absl/random/CMakeFiles/random_seed_gen_exception.dir/seed_gen_exception.cc.o [ 88%] Linking CXX static library libabsl_random_seed_gen_exception.a [ 88%] Built target random_seed_gen_exception [ 88%] Building CXX object absl/random/CMakeFiles/random_internal_seed_material.dir/internal/seed_material.cc.o [ 89%] Linking CXX static library libabsl_random_internal_seed_material.a [ 89%] Built target random_internal_seed_material [ 89%] Building CXX object absl/random/CMakeFiles/random_internal_platform.dir/internal/randen_round_keys.cc.o [ 90%] Linking CXX static library libabsl_random_internal_platform.a [ 90%] Built target random_internal_platform [ 90%] Building CXX object absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o [ 91%] Linking CXX static library libabsl_random_internal_randen_hwaes_impl.a [ 91%] Built target random_internal_randen_hwaes_impl [ 91%] Building CXX object absl/random/CMakeFiles/random_internal_randen_slow.dir/internal/randen_slow.cc.o [ 92%] Linking CXX static library libabsl_random_internal_randen_slow.a [ 92%] Built target random_internal_randen_slow [ 93%] Building CXX object absl/random/CMakeFiles/random_internal_randen_hwaes.dir/internal/randen_detect.cc.o [ 93%] Linking CXX static library libabsl_random_internal_randen_hwaes.a [ 93%] Built target random_internal_randen_hwaes [ 94%] Building CXX object absl/random/CMakeFiles/random_internal_randen.dir/internal/randen.cc.o [ 94%] Linking CXX static library libabsl_random_internal_randen.a [ 94%] Built target random_internal_randen [ 94%] Building CXX object absl/random/CMakeFiles/random_internal_pool_urbg.dir/internal/pool_urbg.cc.o [ 94%] Linking CXX static library libabsl_random_internal_pool_urbg.a [ 94%] Built target random_internal_pool_urbg [ 95%] Building CXX object absl/random/CMakeFiles/random_seed_sequences.dir/seed_sequences.cc.o [ 95%] Linking CXX static library libabsl_random_seed_sequences.a [ 95%] Built target random_seed_sequences [ 96%] Building CXX object absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/chi_square.cc.o [ 96%] Building CXX object absl/random/CMakeFiles/random_internal_distribution_test_util.dir/internal/distribution_test_util.cc.o [ 97%] Linking CXX static library libabsl_random_internal_distribution_test_util.a [ 97%] Built target random_internal_distribution_test_util [ 97%] Building CXX object absl/status/CMakeFiles/status.dir/status.cc.o [ 97%] Building CXX object absl/status/CMakeFiles/status.dir/status_payload_printer.cc.o [ 98%] Linking CXX static library libabsl_status.a [ 98%] Built target status [ 98%] Building CXX object absl/status/CMakeFiles/statusor.dir/statusor.cc.o [ 99%] Linking CXX static library libabsl_statusor.a [ 99%] Built target statusor [ 99%] Building CXX object absl/strings/CMakeFiles/cordz_sample_token.dir/internal/cordz_sample_token.cc.o [100%] Linking CXX static library libabsl_cordz_sample_token.a [100%] Built target cordz_sample_token [100%] Building CXX object absl/types/CMakeFiles/bad_any_cast_impl.dir/bad_any_cast.cc.o [100%] Linking CXX static library libabsl_bad_any_cast_impl.a [100%] Built target bad_any_cast_impl -- Install configuration: "Release" -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/cmake/absl/abslTargets.cmake -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/cmake/absl/abslTargets-release.cmake -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/cmake/absl/abslConfig.cmake -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/cmake/absl/abslConfigVersion.cmake -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/algorithm -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/algorithm/algorithm.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/algorithm/container.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/profiling -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/profiling/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/profiling/internal/exponential_biased.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/profiling/internal/periodic_sampler.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/profiling/internal/sample_recorder.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/barrier.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/mutex.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/graphcycles.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/futex.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/kernel_timeout.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/waiter_base.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/per_thread_sem.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/stdcpp_waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/futex_waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/create_thread_identity.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/win32_waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/sem_waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/thread_pool.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/internal/pthread_waiter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/notification.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/synchronization/blocking_counter.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/internal/representation.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/internal/bits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/int128_have_intrinsic.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/bits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/int128.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/numeric/int128_no_intrinsic.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize_darwin.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize_unimplemented.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_riscv-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/vdso_support.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_win32-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/address_is_readable.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/examine_stack.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_generic-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_unimplemented-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/symbolize.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_powerpc-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/elf_mem_image.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_emscripten-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/demangle.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_aarch64-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_arm-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stack_consumption.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/internal/stacktrace_x86-inl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize_emscripten.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/leak_check.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/failure_signal_handler.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/stacktrace.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize_win32.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/debugging/symbolize_elf.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/crc32c.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc32c.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/cpu_detect.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/non_temporal_memcpy.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc32c_inline.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc_memcpy.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/non_temporal_arm_intrinsics.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc32_x86_arm_combined_simd.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/crc/internal/crc_cord_state.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/cordz_test_helpers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/string_view.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/strip.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/substitute.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/cord_buffer.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/str_split.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/str_cat.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/escaping.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/str_join.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/numbers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/charconv.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/str_format.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/escaping_test_common.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/damerau_levenshtein_distance.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_split_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_test_util.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/numbers_test_common.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/escaping.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_sample_token.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/charconv_parse.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_consume.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_handle.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/resize_uninitialized.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_update_scope.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_ring.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/memutil.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_crc.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/utf8.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_info.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/char_map.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/charconv_bigint.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/stringify_sink.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_flat.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_btree.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_functions.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_join_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_data_edge.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_statistics.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/has_absl_stringify.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/extension.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/arg.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/float_conversion.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/checker.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/constexpr_parser.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/output.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/parser.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/str_format/bind.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_btree_navigator.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/string_constant.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/stl_type_traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_ring_reader.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/pow10_helper.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/ostringstream.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cord_rep_btree_reader.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/internal/cordz_update_tracker.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/ascii.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/str_replace.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/cord.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/match.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/cord_analysis.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/strings/cord_test_helpers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/flat_hash_map.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/inlined_vector.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/node_hash_map.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/flat_hash_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/fixed_array.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_map_constructor_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/raw_hash_map.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/inlined_vector.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hash_policy_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_set_members_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/raw_hash_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/btree_container.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_map_members_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hashtable_debug.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_map_modifiers_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hashtablez_sampler.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/common.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hash_policy_traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/common_policy_traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/counting_allocator.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hash_function_defaults.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hashtable_debug_hooks.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_set_constructor_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/btree.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/layout.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_set_modifiers_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/compressed_tuple.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/tracked.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_map_lookup_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/node_slot_policy.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/container_memory.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/hash_generator_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/test_instance_tracker.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/internal/unordered_set_lookup_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/btree_map.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/btree_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/node_hash_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/container/btree_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/memory -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/memory/memory.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/structured.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/scoped_mock_log.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/absl_check.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/check_test_impl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log_entry.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/initialize.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/check_impl.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/structured.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/strip.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/log_impl.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/proto.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/test_actions.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/log_format.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/test_helpers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/flags.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/log_sink_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/check_op.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/test_matchers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/nullguard.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/voidify.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/globals.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/append_truncated.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/nullstream.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/conditions.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/internal/log_message.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log_basic_test_impl.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/flags.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log_sink.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/check.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/absl_log.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/die_if_null.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/globals.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log_sink_registry.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/log/log_streamer.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/get_current_time_chrono.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/get_current_time_posix.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include/cctz -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include/cctz/time_zone.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include/cctz/civil_time.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include/cctz/civil_time_detail.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/include/cctz/zone_info_source.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_libc.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_fixed.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_if.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_info.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_impl.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/tzfile.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/cctz/src/time_zone_posix.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/internal/test_util.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/civil_time.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/clock.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/time/time.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/poisson_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/distributions.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/bit_gen_ref.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/discrete_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/beta_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/uniform_real_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/bernoulli_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/exponential_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/zipf_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen_traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/distribution_test_util.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/salted_seed_seq.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/distribution_caller.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/generate_real.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/sequence_urbg.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/iostream_state_saver.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/mock_helpers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/nanobenchmark.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/wide_multiply.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/fast_uniform_bits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/pcg_engine.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen_engine.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen_detect.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/mock_overload_set.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/platform.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/chi_square.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/pool_urbg.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen_slow.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/nonsecure_base.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/uniform_helper.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/explicit_seed_seq.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/fastmath.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/seed_material.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/internal/randen_hwaes.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/gaussian_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/uniform_int_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/mock_distributions.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/random.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/seed_sequences.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/seed_gen_exception.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/log_uniform_int_distribution.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/random/mocking_bit_gen.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/meta -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/meta/type_traits.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/internal/status_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/internal/statusor_internal.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/status_payload_printer.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/statusor.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/status/status.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/utility -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/utility/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/utility/internal/if_constexpr.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/utility/utility.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/usage.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/reflection.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/usage_config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/usage.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/private_handle_accessor.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/sequence_lock.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/flag_msvc.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/parse.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/flag.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/commandlineflag.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/path_util.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/registry.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/internal/program_name.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/marshalling.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/parse.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/flag.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/commandlineflag.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/flags/declare.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/cleanup -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/cleanup/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/cleanup/internal/cleanup.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/cleanup/cleanup.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/macros.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/sysinfo.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock_posix.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/atomic_hook_test_helper.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/low_level_alloc.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/raw_logging.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/tsan_mutex_interface.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/unscaledcycleclock.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/scheduling_mode.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/direct_mmap.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/unscaledcycleclock_config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/identity.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/prefetch.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/pretty_function.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/cycleclock.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/exception_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/fast_type_id.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/exception_safety_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/per_thread_tls.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock_linux.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock_win32.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/atomic_hook.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/strerror.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/throw_delegate.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/invoke.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/nullability_impl.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/dynamic_annotations.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/unaligned_access.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/hide_ptr.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/thread_identity.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/inline_variable.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/scoped_set_env.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/endian.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/thread_annotations.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/errno_saver.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/low_level_scheduling.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock_wait.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/inline_variable_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/cycleclock_config.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/internal/spinlock_akaros.inc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/prefetch.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/log_severity.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/nullability.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/const_init.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/attributes.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/policy_checks.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/dynamic_annotations.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/optimization.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/call_once.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/thread_annotations.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/casts.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/port.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/options.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/hash_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/hash.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal/spy_hash_state.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal/low_level_hash.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal/city.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal/hash.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/hash/internal/hash_test.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/variant.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/any.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/compare.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/span.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/variant.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/conformance_archetype.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/span.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/transform_args.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/conformance_profile.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/optional.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/parentheses.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/conformance_aliases.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/conformance_testing_helpers.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/internal/conformance_testing.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/optional.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/bad_optional_access.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/bad_any_cast.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/types/bad_variant_access.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/any_invocable.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/internal -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/internal/any_invocable.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/internal/front_binder.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/internal/function_ref.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/function_ref.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/functional/bind_front.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include/absl/base/options.h -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_atomic_hook.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_errno_saver.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_severity.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_severity.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_nullability.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_raw_logging_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_raw_logging_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_spinlock_wait.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_spinlock_wait.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_config.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_dynamic_annotations.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_core_headers.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_malloc_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_malloc_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_base_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_base.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_base.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_throw_delegate.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_throw_delegate.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_pretty_function.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_endian.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_scoped_set_env.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_scoped_set_env.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_strerror.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_strerror.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_fast_type_id.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_prefetch.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_algorithm.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_algorithm_container.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cleanup_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cleanup.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_btree.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_compressed_tuple.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_fixed_array.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_inlined_vector_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_inlined_vector.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_counting_allocator.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flat_hash_map.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flat_hash_set.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_node_hash_map.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_node_hash_set.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_container_memory.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hash_function_defaults.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hash_policy_traits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_common_policy_traits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hashtablez_sampler.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_hashtablez_sampler.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hashtable_debug.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hashtable_debug_hooks.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_node_slot_policy.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_raw_hash_map.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_container_common.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_raw_hash_set.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_raw_hash_set.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_layout.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_crc_cpu_detect.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_crc_cpu_detect.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_crc_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_crc_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_crc32c.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_crc32c.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_non_temporal_arm_intrinsics.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_non_temporal_memcpy.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_crc_cord_state.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_crc_cord_state.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_stacktrace.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_stacktrace.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_symbolize.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_symbolize.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_examine_stack.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_examine_stack.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_failure_signal_handler.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_failure_signal_handler.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_debugging_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_debugging_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_demangle_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_demangle_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_leak_check.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_leak_check.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_debugging.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_path_util.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_program_name.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_program_name.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_config.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_config.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_marshalling.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_marshalling.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_commandlineflag_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_commandlineflag_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_commandlineflag.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_commandlineflag.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_private_handle_accessor.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_private_handle_accessor.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_reflection.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_reflection.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_usage_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_usage_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_usage.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_usage.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_flags_parse.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_flags_parse.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_any_invocable.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bind_front.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_function_ref.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_hash.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_hash.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_city.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_city.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_low_level_hash.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_low_level_hash.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_check_impl.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_check_op.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_check_op.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_conditions.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_conditions.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_config.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_flags.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_format.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_format.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_globals.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_globals.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_log_impl.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_proto.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_proto.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_message.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_message.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_log_sink_set.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_log_sink_set.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_nullguard.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_internal_nullguard.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_nullstream.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_strip.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_voidify.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_append_truncated.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_absl_check.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_absl_log.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_check.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_die_if_null.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_die_if_null.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_flags.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_flags.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_globals.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_globals.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_initialize.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_initialize.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_entry.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_entry.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_sink.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_log_sink.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_sink_registry.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_streamer.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_internal_structured.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_log_structured.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_memory.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_type_traits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_meta.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_int128.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_int128.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_numeric.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_numeric_representation.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_sample_recorder.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_exponential_biased.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_exponential_biased.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_periodic_sampler.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_periodic_sampler.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_random.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_bit_gen_ref.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_mock_helpers.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_distributions.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_distributions.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_seed_gen_exception.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_seed_gen_exception.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_seed_sequences.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_seed_sequences.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_traits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_distribution_caller.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_fast_uniform_bits.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_seed_material.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_seed_material.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_pool_urbg.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_pool_urbg.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_salted_seed_seq.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_iostream_state_saver.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_generate_real.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_wide_multiply.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_fastmath.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_nonsecure_base.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_pcg_engine.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_randen_engine.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_platform.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_platform.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_randen.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_randen.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_randen_slow.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_randen_slow.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_randen_hwaes.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_randen_hwaes.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_randen_hwaes_impl.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_randen_hwaes_impl.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_distribution_test_util.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_random_internal_distribution_test_util.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_random_internal_uniform_helper.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_status.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_status.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_statusor.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_statusor.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_string_view.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_string_view.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_strings.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_strings.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_strings_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_strings_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_str_format.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_str_format_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_str_format_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cord_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cord_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_update_tracker.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_functions.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cordz_functions.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_statistics.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_handle.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cordz_handle.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_info.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cordz_info.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_sample_token.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cordz_sample_token.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cordz_update_scope.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_cord.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_cord.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_graphcycles_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_graphcycles_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_kernel_timeout_internal.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_kernel_timeout_internal.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_synchronization.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_synchronization.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_time.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_time.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_civil_time.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_civil_time.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_time_zone.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_time_zone.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_any.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bad_any_cast.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bad_any_cast_impl.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_bad_any_cast_impl.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_span.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_optional.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bad_optional_access.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_bad_optional_access.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_bad_variant_access.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/libabsl_bad_variant_access.a -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_variant.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_compare.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_utility.pc -- Installing: /tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/lib64/pkgconfig/absl_if_constexpr.pc ** Done! ** Using PKG_CONFIG_PATH=tools/dist/lib64/pkgconfig:/home/th798/.conda/envs/emacs1/lib/pkgconfig:/home/th798/lib/pkgconfig:/home/th798/lib64/pkgconfig:/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/pkgconfig Testing Abseil configuration using PKG_CFLAGS=-I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include Using PKG_LIBS=-Ltools/dist/lib64 -labsl_flags -labsl_flags_internal -labsl_flags_marshalling -labsl_flags_reflection -labsl_flags_private_handle_accessor -labsl_flags_commandlineflag -labsl_flags_commandlineflag_internal -labsl_flags_config -labsl_flags_program_name -labsl_raw_hash_set -labsl_hashtablez_sampler -labsl_log_internal_check_op -labsl_log_internal_conditions -labsl_log_internal_message -labsl_examine_stack -labsl_log_internal_format -labsl_log_internal_proto -labsl_log_internal_nullguard -labsl_log_internal_log_sink_set -labsl_log_internal_globals -labsl_log_globals -labsl_hash -labsl_city -labsl_bad_variant_access -labsl_low_level_hash -labsl_log_sink -labsl_log_entry -labsl_status -labsl_cord -labsl_cordz_info -labsl_cord_internal -labsl_cordz_functions -labsl_exponential_biased -labsl_cordz_handle -labsl_synchronization -labsl_graphcycles_internal -labsl_kernel_timeout_internal -labsl_time -labsl_civil_time -labsl_time_zone -labsl_crc_cord_state -labsl_crc32c -labsl_crc_internal -labsl_crc_cpu_detect -labsl_bad_optional_access -labsl_stacktrace -labsl_str_format_internal -labsl_strerror -labsl_symbolize -labsl_debugging_internal -labsl_demangle_internal -labsl_malloc_internal -labsl_strings -labsl_string_view -labsl_strings_internal -labsl_base -lrt -labsl_spinlock_wait -labsl_int128 -labsl_throw_delegate -labsl_raw_logging_internal -labsl_log_severity -L/home/th798/.conda/envs/emacs1/lib -lssl -lcrypto Using PKG_CFLAGS=-I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cpp-compat.cpp -o cpp-compat.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-accessors.cpp -o s2-accessors.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-bounds.cpp -o s2-bounds.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-cell.cpp -o s2-cell.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-cell-union.cpp -o s2-cell-union.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-constructors-formatters.cpp -o s2-constructors-formatters.o In file included from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/RcppCommon.h:30, from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp.h:27, from geography.h:5, from s2-constructors-formatters.cpp:9: /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/r/check_r_headers.h:27:21: note: '#pragma message: R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410' 27 | #pragma message "R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/r/check_r_headers.h:35:21: note: '#pragma message: Rinternals.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410' 35 | #pragma message "Rinternals.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-predicates.cpp -o s2-predicates.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-transformers.cpp -o s2-transformers.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.cpp -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-geography.cpp -o s2-geography.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-lnglat.cpp -o s2-lnglat.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2-matrix.cpp -o s2-matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wk-impl.c -o wk-impl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/accessors-geog.cc -o s2geography/accessors-geog.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/accessors.cc -o s2geography/accessors.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/build.cc -o s2geography/build.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/coverings.cc -o s2geography/coverings.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/distance.cc -o s2geography/distance.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/geography.cc -o s2geography/geography.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/linear-referencing.cc -o s2geography/linear-referencing.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2geography/predicates.cc -o s2geography/predicates.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/encoded_s2cell_id_vector.cc -o s2/encoded_s2cell_id_vector.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/encoded_s2point_vector.cc -o s2/encoded_s2point_vector.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/encoded_s2shape_index.cc -o s2/encoded_s2shape_index.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/encoded_string_vector.cc -o s2/encoded_string_vector.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/id_set_lexicon.cc -o s2/id_set_lexicon.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/mutable_s2shape_index.cc -o s2/mutable_s2shape_index.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/r2rect.cc -o s2/r2rect.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s1angle.cc -o s2/s1angle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s1chord_angle.cc -o s2/s1chord_angle.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s1interval.cc -o s2/s1interval.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2boolean_operation.cc -o s2/s2boolean_operation.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2buffer_operation.cc -o s2/s2buffer_operation.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builder_graph.cc -o s2/s2builder_graph.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builder.cc -o s2/s2builder.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_closed_set_normalizer.cc -o s2/s2builderutil_closed_set_normalizer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_find_polygon_degeneracies.cc -o s2/s2builderutil_find_polygon_degeneracies.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_get_snapped_winding_delta.cc -o s2/s2builderutil_get_snapped_winding_delta.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_lax_polygon_layer.cc -o s2/s2builderutil_lax_polygon_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_lax_polyline_layer.cc -o s2/s2builderutil_lax_polyline_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_s2point_vector_layer.cc -o s2/s2builderutil_s2point_vector_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_s2polygon_layer.cc -o s2/s2builderutil_s2polygon_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_s2polyline_layer.cc -o s2/s2builderutil_s2polyline_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_s2polyline_vector_layer.cc -o s2/s2builderutil_s2polyline_vector_layer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2builderutil_snap_functions.cc -o s2/s2builderutil_snap_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2cap.cc -o s2/s2cap.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2cell_id.cc -o s2/s2cell_id.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2cell_index.cc -o s2/s2cell_index.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2cell_union.cc -o s2/s2cell_union.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2cell.cc -o s2/s2cell.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2centroids.cc -o s2/s2centroids.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2closest_cell_query.cc -o s2/s2closest_cell_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2closest_edge_query.cc -o s2/s2closest_edge_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2closest_point_query.cc -o s2/s2closest_point_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2contains_vertex_query.cc -o s2/s2contains_vertex_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2convex_hull_query.cc -o s2/s2convex_hull_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2coords.cc -o s2/s2coords.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2crossing_edge_query.cc -o s2/s2crossing_edge_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2debug.cc -o s2/s2debug.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2earth.cc -o s2/s2earth.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2edge_clipping.cc -o s2/s2edge_clipping.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2edge_crosser.cc -o s2/s2edge_crosser.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2edge_crossings.cc -o s2/s2edge_crossings.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2edge_distances.cc -o s2/s2edge_distances.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2edge_tessellator.cc -o s2/s2edge_tessellator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2error.cc -o s2/s2error.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2furthest_edge_query.cc -o s2/s2furthest_edge_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2hausdorff_distance_query.cc -o s2/s2hausdorff_distance_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2latlng_rect_bounder.cc -o s2/s2latlng_rect_bounder.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2latlng_rect.cc -o s2/s2latlng_rect.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2latlng.cc -o s2/s2latlng.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2lax_loop_shape.cc -o s2/s2lax_loop_shape.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2lax_polygon_shape.cc -o s2/s2lax_polygon_shape.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2lax_polyline_shape.cc -o s2/s2lax_polyline_shape.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2loop_measures.cc -o s2/s2loop_measures.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2loop.cc -o s2/s2loop.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2max_distance_targets.cc -o s2/s2max_distance_targets.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2measures.cc -o s2/s2measures.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2memory_tracker.cc -o s2/s2memory_tracker.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2metrics.cc -o s2/s2metrics.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2min_distance_targets.cc -o s2/s2min_distance_targets.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2padded_cell.cc -o s2/s2padded_cell.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2point_compression.cc -o s2/s2point_compression.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2point_region.cc -o s2/s2point_region.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2pointutil.cc -o s2/s2pointutil.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2polygon.cc -o s2/s2polygon.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2polyline_alignment.cc -o s2/s2polyline_alignment.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2polyline_measures.cc -o s2/s2polyline_measures.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2polyline_simplifier.cc -o s2/s2polyline_simplifier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2polyline.cc -o s2/s2polyline.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2predicates.cc -o s2/s2predicates.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2projections.cc -o s2/s2projections.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2r2rect.cc -o s2/s2r2rect.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2region_coverer.cc -o s2/s2region_coverer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2region_intersection.cc -o s2/s2region_intersection.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2region_term_indexer.cc -o s2/s2region_term_indexer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2region_union.cc -o s2/s2region_union.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2region.cc -o s2/s2region.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shape_index_buffered_region.cc -o s2/s2shape_index_buffered_region.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shape_index_measures.cc -o s2/s2shape_index_measures.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shape_index.cc -o s2/s2shape_index.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shape_measures.cc -o s2/s2shape_measures.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shape_nesting_query.cc -o s2/s2shape_nesting_query.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_build_polygon_boundaries.cc -o s2/s2shapeutil_build_polygon_boundaries.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_coding.cc -o s2/s2shapeutil_coding.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_contains_brute_force.cc -o s2/s2shapeutil_contains_brute_force.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_conversion.cc -o s2/s2shapeutil_conversion.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_edge_iterator.cc -o s2/s2shapeutil_edge_iterator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_get_reference_point.cc -o s2/s2shapeutil_get_reference_point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2shapeutil_visit_crossing_edge_pairs.cc -o s2/s2shapeutil_visit_crossing_edge_pairs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2text_format.cc -o s2/s2text_format.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2wedge_relations.cc -o s2/s2wedge_relations.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/s2winding_operation.cc -o s2/s2winding_operation.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/bits/bit-interleave.cc -o s2/util/bits/bit-interleave.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/coding/coder.cc -o s2/util/coding/coder.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/coding/varint.cc -o s2/util/coding/varint.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/math/exactfloat/exactfloat.cc -o s2/util/math/exactfloat/exactfloat.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/math/mathutil.cc -o s2/util/math/mathutil.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../src -DSTRICT_R_HEADERS -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/wk/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I/tmp/th798/25909589/RtmpEZJbbh/R.INSTALL1e4b7c50be02e9/s2/tools/dist/include -I/home/th798/.conda/envs/emacs1/include -pthread -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c s2/util/units/length-units.cc -o s2/util/units/length-units.o ar rcs s2/libs2static.a s2/encoded_s2cell_id_vector.o s2/encoded_s2point_vector.o s2/encoded_s2shape_index.o s2/encoded_string_vector.o s2/id_set_lexicon.o s2/mutable_s2shape_index.o s2/r2rect.o s2/s1angle.o s2/s1chord_angle.o s2/s1interval.o s2/s2boolean_operation.o s2/s2buffer_operation.o s2/s2builder_graph.o s2/s2builder.o s2/s2builderutil_closed_set_normalizer.o s2/s2builderutil_find_polygon_degeneracies.o s2/s2builderutil_get_snapped_winding_delta.o s2/s2builderutil_lax_polygon_layer.o s2/s2builderutil_lax_polyline_layer.o s2/s2builderutil_s2point_vector_layer.o s2/s2builderutil_s2polygon_layer.o s2/s2builderutil_s2polyline_layer.o s2/s2builderutil_s2polyline_vector_layer.o s2/s2builderutil_snap_functions.o s2/s2cap.o s2/s2cell_id.o s2/s2cell_index.o s2/s2cell_union.o s2/s2cell.o s2/s2centroids.o s2/s2closest_cell_query.o s2/s2closest_edge_query.o s2/s2closest_point_query.o s2/s2contains_vertex_query.o s2/s2convex_hull_query.o s2/s2coords.o s2/s2crossing_edge_query.o s2/s2debug.o s2/s2earth.o s2/s2edge_clipping.o s2/s2edge_crosser.o s2/s2edge_crossings.o s2/s2edge_distances.o s2/s2edge_tessellator.o s2/s2error.o s2/s2furthest_edge_query.o s2/s2hausdorff_distance_query.o s2/s2latlng_rect_bounder.o s2/s2latlng_rect.o s2/s2latlng.o s2/s2lax_loop_shape.o s2/s2lax_polygon_shape.o s2/s2lax_polyline_shape.o s2/s2loop_measures.o s2/s2loop.o s2/s2max_distance_targets.o s2/s2measures.o s2/s2memory_tracker.o s2/s2metrics.o s2/s2min_distance_targets.o s2/s2padded_cell.o s2/s2point_compression.o s2/s2point_region.o s2/s2pointutil.o s2/s2polygon.o s2/s2polyline_alignment.o s2/s2polyline_measures.o s2/s2polyline_simplifier.o s2/s2polyline.o s2/s2predicates.o s2/s2projections.o s2/s2r2rect.o s2/s2region_coverer.o s2/s2region_intersection.o s2/s2region_term_indexer.o s2/s2region_union.o s2/s2region.o s2/s2shape_index_buffered_region.o s2/s2shape_index_measures.o s2/s2shape_index.o s2/s2shape_measures.o s2/s2shape_nesting_query.o s2/s2shapeutil_build_polygon_boundaries.o s2/s2shapeutil_coding.o s2/s2shapeutil_contains_brute_force.o s2/s2shapeutil_conversion.o s2/s2shapeutil_edge_iterator.o s2/s2shapeutil_get_reference_point.o s2/s2shapeutil_visit_crossing_edge_pairs.o s2/s2text_format.o s2/s2wedge_relations.o s2/s2winding_operation.o s2/util/bits/bit-interleave.o s2/util/coding/coder.o s2/util/coding/varint.o s2/util/math/exactfloat/exactfloat.o s2/util/math/mathutil.o s2/util/units/length-units.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o s2.so cpp-compat.o s2-accessors.o s2-bounds.o s2-cell.o s2-cell-union.o s2-constructors-formatters.o s2-predicates.o s2-transformers.o init.o RcppExports.o s2-geography.o s2-lnglat.o s2-matrix.o wk-impl.o s2geography/accessors-geog.o s2geography/accessors.o s2geography/build.o s2geography/coverings.o s2geography/distance.o s2geography/geography.o s2geography/linear-referencing.o s2geography/predicates.o -Ls2 -ls2static -Ltools/dist/lib64 -labsl_flags -labsl_flags_internal -labsl_flags_marshalling -labsl_flags_reflection -labsl_flags_private_handle_accessor -labsl_flags_commandlineflag -labsl_flags_commandlineflag_internal -labsl_flags_config -labsl_flags_program_name -labsl_raw_hash_set -labsl_hashtablez_sampler -labsl_log_internal_check_op -labsl_log_internal_conditions -labsl_log_internal_message -labsl_examine_stack -labsl_log_internal_format -labsl_log_internal_proto -labsl_log_internal_nullguard -labsl_log_internal_log_sink_set -labsl_log_internal_globals -labsl_log_globals -labsl_hash -labsl_city -labsl_bad_variant_access -labsl_low_level_hash -labsl_log_sink -labsl_log_entry -labsl_status -labsl_cord -labsl_cordz_info -labsl_cord_internal -labsl_cordz_functions -labsl_exponential_biased -labsl_cordz_handle -labsl_synchronization -labsl_graphcycles_internal -labsl_kernel_timeout_internal -labsl_time -labsl_civil_time -labsl_time_zone -labsl_crc_cord_state -labsl_crc32c -labsl_crc_internal -labsl_crc_cpu_detect -labsl_bad_optional_access -labsl_stacktrace -labsl_str_format_internal -labsl_strerror -labsl_symbolize -labsl_debugging_internal -labsl_demangle_internal -labsl_malloc_internal -labsl_strings -labsl_string_view -labsl_strings_internal -labsl_base -lrt -labsl_spinlock_wait -labsl_int128 -labsl_throw_delegate -labsl_raw_logging_internal -labsl_log_severity -L/home/th798/.conda/envs/emacs1/lib -lssl -lcrypto /usr/bin/ld: cannot find -labsl_flags /usr/bin/ld: cannot find -labsl_flags_internal /usr/bin/ld: cannot find -labsl_flags_marshalling /usr/bin/ld: cannot find -labsl_flags_reflection /usr/bin/ld: cannot find -labsl_flags_private_handle_accessor /usr/bin/ld: cannot find -labsl_flags_commandlineflag /usr/bin/ld: cannot find -labsl_flags_commandlineflag_internal /usr/bin/ld: cannot find -labsl_flags_config /usr/bin/ld: cannot find -labsl_flags_program_name /usr/bin/ld: cannot find -labsl_raw_hash_set /usr/bin/ld: cannot find -labsl_hashtablez_sampler /usr/bin/ld: cannot find -labsl_log_internal_check_op /usr/bin/ld: cannot find -labsl_log_internal_conditions /usr/bin/ld: cannot find -labsl_log_internal_message /usr/bin/ld: cannot find -labsl_examine_stack /usr/bin/ld: cannot find -labsl_log_internal_format /usr/bin/ld: cannot find -labsl_log_internal_proto /usr/bin/ld: cannot find -labsl_log_internal_nullguard /usr/bin/ld: cannot find -labsl_log_internal_log_sink_set /usr/bin/ld: cannot find -labsl_log_internal_globals /usr/bin/ld: cannot find -labsl_log_globals /usr/bin/ld: cannot find -labsl_hash /usr/bin/ld: cannot find -labsl_city /usr/bin/ld: cannot find -labsl_bad_variant_access /usr/bin/ld: cannot find -labsl_low_level_hash /usr/bin/ld: cannot find -labsl_log_sink /usr/bin/ld: cannot find -labsl_log_entry /usr/bin/ld: cannot find -labsl_status /usr/bin/ld: cannot find -labsl_cord /usr/bin/ld: cannot find -labsl_cordz_info /usr/bin/ld: cannot find -labsl_cord_internal /usr/bin/ld: cannot find -labsl_cordz_functions /usr/bin/ld: cannot find -labsl_exponential_biased /usr/bin/ld: cannot find -labsl_cordz_handle /usr/bin/ld: cannot find -labsl_synchronization /usr/bin/ld: cannot find -labsl_graphcycles_internal /usr/bin/ld: cannot find -labsl_kernel_timeout_internal /usr/bin/ld: cannot find -labsl_time /usr/bin/ld: cannot find -labsl_civil_time /usr/bin/ld: cannot find -labsl_time_zone /usr/bin/ld: cannot find -labsl_crc_cord_state /usr/bin/ld: cannot find -labsl_crc32c /usr/bin/ld: cannot find -labsl_crc_internal /usr/bin/ld: cannot find -labsl_crc_cpu_detect /usr/bin/ld: cannot find -labsl_bad_optional_access /usr/bin/ld: cannot find -labsl_stacktrace /usr/bin/ld: cannot find -labsl_str_format_internal /usr/bin/ld: cannot find -labsl_strerror /usr/bin/ld: cannot find -labsl_symbolize /usr/bin/ld: cannot find -labsl_debugging_internal /usr/bin/ld: cannot find -labsl_demangle_internal /usr/bin/ld: cannot find -labsl_malloc_internal /usr/bin/ld: cannot find -labsl_strings /usr/bin/ld: cannot find -labsl_string_view /usr/bin/ld: cannot find -labsl_strings_internal /usr/bin/ld: cannot find -labsl_base /usr/bin/ld: cannot find -labsl_spinlock_wait /usr/bin/ld: cannot find -labsl_int128 /usr/bin/ld: cannot find -labsl_throw_delegate /usr/bin/ld: cannot find -labsl_raw_logging_internal /usr/bin/ld: cannot find -labsl_log_severity collect2: error: ld returned 1 exit status make: *** [/home/th798/R/R-devel/share/make/shlib.mk:10: s2.so] Error 1 ERROR: compilation failed for package 's2' * removing '/tmp/th798/25909589/R-devel/849/library/s2' * installing *source* package 'units' ... ** this is package 'units' version '1.0-0' ** package 'units' successfully unpacked and MD5 sums checked ** using staged installation configure: units: 1.0-0 checking for default C++ standard... 201703 checking whether the C++ compiler works... yes checking for C++ compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C++... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 option to enable C++11 features... none needed checking for stdio.h... yes checking for stdlib.h... yes checking for string.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for strings.h... yes checking for sys/stat.h... yes checking for sys/types.h... yes checking for unistd.h... yes checking for _Bool... no checking for stdbool.h that conforms to C99 or later... yes checking for error_at_line... yes checking for gcc... /packages/gcc/12.2.0-nnbserq/bin/gcc checking whether the compiler supports GNU C... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gcc accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/gcc option to enable C11 features... none needed checking for brew... no checking for XML_ParserCreate in -lexpat... yes checking for udunits2.h... no checking for udunits2/udunits2.h... yes checking for ut_read_xml in -ludunits2... yes configure: creating ./config.status config.status: creating src/Makevars ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DUDUNITS2_DIR=1 -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DUDUNITS2_DIR=1 -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tokenizer.cpp -o tokenizer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DUDUNITS2_DIR=1 -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c udunits.cpp -o udunits.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o units.so RcppExports.o tokenizer.o udunits.o -lexpat -lexpat -ludunits2 installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-units/00new/units/libs ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (units) * installing *source* package 'RcppRoll' ... ** this is package 'RcppRoll' version '0.3.1' ** package 'RcppRoll' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppRoll.cpp -o RcppRoll.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppRoll.so RcppExports.o RcppRoll.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RcppRoll/00new/RcppRoll/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppRoll) * installing *source* package 'earth' ... ** this is package 'earth' version '5.3.4' ** package 'earth' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c allowed.c -o allowed.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c earth.c -o earth.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c leaps.f -o leaps.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c leapshdr.f -o leapshdr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rentries.c -o rentries.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o earth.so allowed.o earth.o leaps.o leapshdr.o rentries.o -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-earth/00new/earth/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (earth) * installing *source* package 'FDboost' ... ** this is package 'FDboost' version '1.1-3' ** package 'FDboost' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (FDboost) * installing *source* package 'knitr' ... ** this is package 'knitr' version '1.50' ** package 'knitr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (knitr) * installing *source* package 'pander' ... ** this is package 'pander' version '0.6.6' ** package 'pander' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c helpers.cpp -o helpers.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pandoc.cpp -o pandoc.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o pander.so RcppExports.o helpers.o pandoc.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-pander/00new/pander/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pander) * installing *source* package 'RSNNS' ... ** this is package 'RSNNS' version '0.4-17' ** package 'RSNNS' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RSNNS_init.c -o RSNNS_init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SnnsCLib.cpp -o SnnsCLib.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SnnsCLibGenericR_util.c -o SnnsCLibGenericR_util.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SnnsCLibWrapper.cpp -o SnnsCLibWrapper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c art_ui.cpp -o art_ui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c arttr_f.cpp -o arttr_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_JordElm.cpp -o bn_JordElm.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_art1.cpp -o bn_art1.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_art2.cpp -o bn_art2.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_artmap.cpp -o bn_artmap.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_assoz.cpp -o bn_assoz.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bn_kohonen.cpp -o bn_kohonen.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cc_display.cpp -o cc_display.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cc_glob.cpp -o cc_glob.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cc_learn.cpp -o cc_learn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cc_modify.cpp -o cc_modify.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cc_prune.cpp -o cc_prune.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dlvq_learn.cpp -o dlvq_learn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c func_tbl.cpp -o func_tbl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init_f.cpp -o init_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernel.cpp -o kernel.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_JordElm.cpp -o kr_JordElm.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_amap.cpp -o kr_amap.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_art.cpp -o kr_art.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_art1.cpp -o kr_art1.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_art2.cpp -o kr_art2.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_funcs.cpp -o kr_funcs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_inversion.cpp -o kr_inversion.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_io.cpp -o kr_io.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_mem.cpp -o kr_mem.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_newpattern.cpp -o kr_newpattern.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_pat_parse.cpp -o kr_pat_parse.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_pat_scan.cpp -o kr_pat_scan.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_td.cpp -o kr_td.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kr_ui.cpp -o kr_ui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c learn_f.cpp -o learn_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.cpp -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prun_f.cpp -o prun_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c remap_f.cpp -o remap_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c scaled_conj_grad.cpp -o scaled_conj_grad.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stochastic_learn_f.cpp -o stochastic_learn_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tacoma_learn.cpp -o tacoma_learn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tbl_func.cpp -o tbl_func.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c trans_f.cpp -o trans_f.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c u_lrand48.cpp -o u_lrand48.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_USE_C99_IN_CXX -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c update_f.cpp -o update_f.o 'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. 'RcppLdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RSNNS.so RSNNS_init.o SnnsCLib.o SnnsCLibGenericR_util.o SnnsCLibWrapper.o art_ui.o arttr_f.o bn_JordElm.o bn_art1.o bn_art2.o bn_artmap.o bn_assoz.o bn_kohonen.o cc_display.o cc_glob.o cc_learn.o cc_modify.o cc_prune.o dlvq_learn.o func_tbl.o init_f.o kernel.o kr_JordElm.o kr_amap.o kr_art.o kr_art1.o kr_art2.o kr_funcs.o kr_inversion.o kr_io.o kr_mem.o kr_newpattern.o kr_pat_parse.o kr_pat_scan.o kr_td.o kr_ui.o learn_f.o matrix.o prun_f.o remap_f.o scaled_conj_grad.o stochastic_learn_f.o tacoma_learn.o tbl_func.o trans_f.o u_lrand48.o update_f.o 'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. 'RcppLdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RSNNS/00new/RSNNS/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RSNNS) * installing *source* package 'rucrdtw' ... ** this is package 'rucrdtw' version '0.1.6' ** package 'rucrdtw' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dtw_functions.cpp -o dtw_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ed_functions.cpp -o ed_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rucrdtw.so RcppExports.o dtw_functions.o ed_functions.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-rucrdtw/00new/rucrdtw/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rucrdtw) * installing *source* package 'sda' ... ** this is package 'sda' version '1.3.9' ** package 'sda' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (sda) * installing *source* package 'sparseLDA' ... ** this is package 'sparseLDA' version '0.1-9' ** package 'sparseLDA' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (sparseLDA) * installing *source* package 'tgp' ... ** this is package 'tgp' version '2.4-23' ** package 'tgp' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c all_draws.c -o all_draws.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c base.cc -o base.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c corr.cc -o corr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dopt.c -o dopt.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exp.cc -o exp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exp_sep.cc -o exp_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gen_covar.c -o gen_covar.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp.cc -o gp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lh.c -o lh.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lik_post.c -o lik_post.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c linalg.c -o linalg.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c list.cc -o list.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matern.cc -o matern.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c model.cc -o model.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mr_exp_sep.cc -o mr_exp_sep.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mstructs.cc -o mstructs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c params.cc -o params.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict.c -o predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict_linear.c -o predict_linear.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rand_draws.c -o rand_draws.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rand_pdf.c -o rand_pdf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c randomkit.c -o randomkit.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rhelp.c -o rhelp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sim.cc -o sim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c temper.cc -o temper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tgp.cc -o tgp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tree.cc -o tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c twovar.cc -o twovar.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o tgp.so all_draws.o base.o corr.o dopt.o exp.o exp_sep.o gen_covar.o gp.o init.o lh.o lik_post.o linalg.o list.o matern.o matrix.o model.o mr_exp_sep.o mstructs.o params.o predict.o predict_linear.o rand_draws.o rand_pdf.o randomkit.o rhelp.o sim.o temper.o tgp.o tree.o twovar.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-tgp/00new/tgp/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (tgp) * installing *source* package 'ks' ... ** this is package 'ks' version '1.15.1' ** package 'ks' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ks.c -o ks.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ks.so ks.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ks/00new/ks/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ks) * installing *source* package 'promises' ... ** this is package 'promises' version '1.5.0' ** package 'promises' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (promises) * installing *source* package 'mets' ... ** this is package 'mets' version '1.3.8' ** package 'mets' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalenfrailty.cpp -o aalenfrailty.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c apply.cpp -o apply.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c binomial-twostage.cpp -o binomial-twostage.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c biprobit.cpp -o biprobit.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c claytonoakes.cpp -o claytonoakes.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c clusterindex.cpp -o clusterindex.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cor.cpp -o cor.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastcox.cpp -o fastcox.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mvn.cpp -o mvn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pch.cpp -o pch.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odd.cpp -o prop-odd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c randomF77.c -o randomF77.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sim-tools.cpp -o sim-tools.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survival-twostage.cpp -o survival-twostage.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tools.cpp -o tools.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c tvpack.f -o tvpack.o 'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. 'RcppLdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mets.so RcppExports.o aalenfrailty.o apply.o binomial-twostage.o biprobit.o claytonoakes.o clusterindex.o cor.o fastcox.o mvn.o pch.o prop-odd.o randomF77.o sim-tools.o survival-twostage.o tools.o tvpack.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -lgfortran -lm -lquadmath 'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. 'RcppLdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'. installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-mets/00new/mets/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mets) * installing *source* package 'reshape2' ... ** this is package 'reshape2' version '1.4.5' ** package 'reshape2' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c melt.cpp -o melt.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o reshape2.so RcppExports.o melt.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-reshape2/00new/reshape2/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (reshape2) * installing *source* package 'ade4' ... ** this is package 'ade4' version '1.7-23' ** package 'ade4' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ade4libCpp.cpp -o ade4libCpp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c adesub.c -o adesub.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c divsub.c -o divsub.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fourthcorner.c -o fourthcorner.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c phylog.c -o phylog.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c testamova.c -o testamova.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c testdim.c -o testdim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c testrlq.c -o testrlq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tests.c -o tests.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I../inst/include -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c testsCpp.cpp -o testsCpp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ade4.so RcppExports.o ade4libCpp.o adesub.o divsub.o fourthcorner.o init.o phylog.o testamova.o testdim.o testrlq.o tests.o testsCpp.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ade4/00new/ade4/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ade4) * installing *source* package 'np' ... ** this is package 'np' version '0.60-18' ** package 'np' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RuniqueCombs.c -o RuniqueCombs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bspline.c -o bspline.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsl_bspline.c -o gsl_bspline.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hash.c -o hash.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c jksum.c -o jksum.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernel.c -o kernel.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernelb.c -o kernelb.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernelcv.c -o kernelcv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernele.c -o kernele.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c kernelw.c -o kernelw.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mat_vec.c -o mat_vec.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c np.c -o np.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c np_init.c -o np_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nr.c -o nr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c statmods.c -o statmods.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tree.c -o tree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o np.so RuniqueCombs.o bspline.o gsl_bspline.o hash.o jksum.o kernel.o kernelb.o kernelcv.o kernele.o kernelw.o mat_vec.o matrix.o np.o np_init.o nr.o statmods.o tree.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-np/00new/np/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (np) * installing *source* package 'ggrepel' ... ** this is package 'ggrepel' version '0.9.6' ** package 'ggrepel' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c repel_boxes.cpp -o repel_boxes.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ggrepel.so RcppExports.o repel_boxes.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ggrepel/00new/ggrepel/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ggrepel) * installing *source* package 'prodlim' ... ** this is package 'prodlim' version '2025.04.28' ** package 'prodlim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c GMLE.c -o GMLE.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c IntIndex.c -o IntIndex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c icens_prodlim.c -o icens_prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c icens_prodlim_ml.c -o icens_prodlim_ml.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iindex.c -o iindex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c life_table.c -o life_table.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c loo.c -o loo.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c neighborhood.c -o neighborhood.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict.c -o predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict_individual_survival.c -o predict_individual_survival.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim.c -o prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_clustersurv.c -o prodlim_clustersurv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_comprisk.c -o prodlim_comprisk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_multistates.c -o prodlim_multistates.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_surv.c -o prodlim_surv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sindex.c -o sindex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c summary_prodlim.c -o summary_prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o prodlim.so GMLE.o IntIndex.o icens_prodlim.o icens_prodlim_ml.o iindex.o init.o life_table.o loo.o neighborhood.o predict.o predict_individual_survival.o prodlim.o prodlim_clustersurv.o prodlim_comprisk.o prodlim_multistates.o prodlim_surv.o sindex.o summary_prodlim.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-prodlim/00new/prodlim/libs ** R ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'prodlim' * removing '/tmp/th798/25909589/R-devel/849/library/prodlim' * installing *source* package 'lme4' ... ** this is package 'lme4' version '1.1-38' ** package 'lme4' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/projects/genomic-ml/R/R-devel/library/Matrix/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DNDEBUG -DEIGEN_DONT_VECTORIZE -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c external.cpp -o external.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/projects/genomic-ml/R/R-devel/library/Matrix/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DNDEBUG -DEIGEN_DONT_VECTORIZE -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c glmFamily.cpp -o glmFamily.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/projects/genomic-ml/R/R-devel/library/Matrix/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DNDEBUG -DEIGEN_DONT_VECTORIZE -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c optimizer.cpp -o optimizer.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/projects/genomic-ml/R/R-devel/library/Matrix/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DNDEBUG -DEIGEN_DONT_VECTORIZE -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predModule.cpp -o predModule.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/projects/genomic-ml/R/R-devel/library/Matrix/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DNDEBUG -DEIGEN_DONT_VECTORIZE -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c respModule.cpp -o respModule.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o lme4.so external.o glmFamily.o optimizer.o predModule.o respModule.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-lme4/00new/lme4/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lme4) * installing *source* package 'ClusterR' ... ** this is package 'ClusterR' version '1.3.5' ** package 'ClusterR' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -I. -fopenmp -DARMA_64BIT_WORD -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -I. -fopenmp -DARMA_64BIT_WORD -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c export_inst_folder_headers.cpp -o export_inst_folder_headers.o In file included from export_inst_folder_headers.cpp:8: ../inst/include/affinity_propagation.h: In member function 'Rcpp::List Affinity_Propagation::affinity_propagation(arma::mat&, std::vector, int, int, double, bool, double, double, bool)': ../inst/include/affinity_propagation.h:360:34: warning: overflow in conversion from 'double' to 'long long unsigned int' changes value from '+QNaN' to '0' [-Woverflow] 360 | tmpidx.fill(arma::datum::nan); // 'tmpidx' can take 'arma::datum::nan' because it is initialized as 'arma::uvec' ( of type double ) | ~~~~~~~~~~~~~^~~ ../inst/include/affinity_propagation.h:448:30: warning: overflow in conversion from 'double' to 'long long unsigned int' changes value from '+QNaN' to '0' [-Woverflow] 448 | tmpidx.fill(arma::datum::nan); // 'tmpidx' can take 'arma::datum::nan' because it is initialized as 'arma::uvec' ( of type double ) | ~~~~~~~~~~~~~^~~ /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ClusterR.so RcppExports.o export_inst_folder_headers.o init.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -fopenmp installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ClusterR/00new/ClusterR/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ClusterR) * installing *source* package 'forecast' ... ** this is package 'forecast' version '8.24.0' ** package 'forecast' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c calcBATS.cpp -o calcBATS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c calcTBATS.cpp -o calcTBATS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c etsTargetFunction.cpp -o etsTargetFunction.o In file included from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/RcppCommon.h:30, from /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp.h:27, from etsTargetFunction.h:3, from etsTargetFunction.cpp:7: /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/r/check_r_headers.h:27:21: note: '#pragma message: R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410' 27 | #pragma message "R.h has been included before any Rcpp headers. This can lead to hard-to-debug errors, and is not necessary. See https://github.com/RcppCore/Rcpp/issues/1410" | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c etsTargetFunctionWrapper.cpp -o etsTargetFunctionWrapper.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c etscalc.c -o etscalc.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c etspolyroot.c -o etspolyroot.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c makeBATSMatrices.cpp -o makeBATSMatrices.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c makeTBATSMatrices.cpp -o makeTBATSMatrices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c registerDynamicSymbol.c -o registerDynamicSymbol.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c updateMatrices.cpp -o updateMatrices.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -DR_NO_REMAP -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c updateTBATSMatrices.cpp -o updateTBATSMatrices.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o forecast.so calcBATS.o calcTBATS.o etsTargetFunction.o etsTargetFunctionWrapper.o etscalc.o etspolyroot.o makeBATSMatrices.o makeTBATSMatrices.o registerDynamicSymbol.o updateMatrices.o updateTBATSMatrices.o -fopenmp -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-forecast/00new/forecast/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (forecast) * installing *source* package 'FSelectorRcpp' ... ** this is package 'FSelectorRcpp' version '0.3.13' ** package 'FSelectorRcpp' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cutOff.cpp -o cutOff.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discretize.cpp -o discretize.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discretizeControl.cpp -o discretizeControl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c information_gain.cpp -o information_gain.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c support.cpp -o support.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c test-cpp.cpp -o test-cpp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/projects/genomic-ml/R/R-devel/library/BH/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-devel/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c test-runner.cpp -o test-runner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o FSelectorRcpp.so RcppExports.o cutOff.o discretize.o discretizeControl.o information_gain.o init.o support.o test-cpp.o test-runner.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-FSelectorRcpp/00new/FSelectorRcpp/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (FSelectorRcpp) * installing *source* package 'glmnet' ... ** this is package 'glmnet' version '4.1-10' ** package 'glmnet' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from RcppExports.cpp:4: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:18:8: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/InputParameter.h:64:11: required from 'class Rcpp::ConstInputParameter > >' RcppExports.cpp:26:87: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:24:49: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/InputParameter.h:64:11: required from 'class Rcpp::ConstInputParameter > >' RcppExports.cpp:26:87: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/InputParameter.h:64:11: required from 'class Rcpp::ConstInputParameter > >' RcppExports.cpp:26:87: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:24:49: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' RcppExports.cpp:47:170: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' RcppExports.cpp:47:170: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:50:7: required from 'class Eigen::SparseMapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:148:7: required from 'class Eigen::SparseMapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:222:7: required from 'class Eigen::Map >' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/InputParameter.h:64:11: required from 'class Rcpp::ConstInputParameter > >' RcppExports.cpp:59:98: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c coxnet5dpclean.f -o coxnet5dpclean.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c elnet_exp.cpp -o elnet_exp.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from elnet_exp.cpp:2: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:18:8: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:24:49: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:400:10: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:38: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Array.h:45:7: required from 'class Eigen::Array' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:409:48: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:409:49: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' elnet_exp.cpp:44:5: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:50:7: required from 'class Eigen::SparseMapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:148:7: required from 'class Eigen::SparseMapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:222:7: required from 'class Eigen::Map >' elnet_exp.cpp:98:5: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, -1, 1, true>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:433:27: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:437:43: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:437:43: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase, 1, -1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 1, -1, false, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 1, -1, false>' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:293:30: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:243:33: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:243:39: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:243:39: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_driver/base.hpp:12:36: required from 'void glmnetpp::ElnetDriverBase::normalize_penalty(VType&&) const [with VType = Eigen::Matrix&]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:402:36: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_driver/chkvars.hpp:16:34: required from 'static void glmnetpp::Chkvars::eval(const XType&, JUType&) [with XType = Eigen::Matrix; JUType = std::vector]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:413:28: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, -1, 1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, -1, 1, true>, -1, 1, false, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, -1, 1, true>, -1, 1, false, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, -1, 1, true>, -1, 1, false>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/VectorBlock.h:56:47: required from 'class Eigen::VectorBlock, -1, 1, true>, -1>' glmnetpp/include/glmnetpp_bits/elnet_driver/chkvars.hpp:16:42: required from 'static void glmnetpp::Chkvars::eval(const XType&, JUType&) [with XType = Eigen::Matrix; JUType = std::vector]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:413:28: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, -1, 1, false> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >' glmnetpp/include/glmnetpp_bits/elnet_driver/chkvars.hpp:17:36: required from 'static void glmnetpp::Chkvars::eval(const XType&, JUType&) [with XType = Eigen::Matrix; JUType = std::vector]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:413:28: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:37:33: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:37:42: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:52:26: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:74:56: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:74:41: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:88:48: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:88:35: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:67: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Matrix; Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:430:16: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:20:67: required from 'Derived& Eigen::DenseBase::operator*=(const Scalar&) [with Derived = Eigen::Block, -1, 1, true>; Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:433:31: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:17:7: required from 'class Eigen::BlockImpl >, -1, 1, true, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:338:29: required from 'static void glmnetpp::SpStandardize::eval(const XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:339:36: required from 'static void glmnetpp::SpStandardize::eval(const XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:339:55: required from 'static void glmnetpp::SpStandardize::eval(const XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:270:44: required from 'static void glmnetpp::SpStandardize1::eval(const XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:270:53: required from 'static void glmnetpp::SpStandardize1::eval(const XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block >, -1, 1, true>, const Eigen::Block >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block >, -1, 1, true>, const Eigen::Block >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block >, -1, 1, true>, const Eigen::Block >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:276:41: required from 'static void glmnetpp::SpStandardize1::eval(const XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:67: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>; Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:294:37: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:41:67: required from 'Derived& Eigen::DenseBase::operator/=(const Scalar&) [with Derived = Eigen::Block, 1, -1, false>; Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:294:37: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:523:48: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:523:57: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:399:49: required from 'static void glmnetpp::MultSpStandardize1::eval(const XType&, YType&, WType&, bool, bool, bool, const JUType&, XMType&, XSType&, YMType&, YSType&, XVType&, ValueType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; YMType = Eigen::Matrix; YSType = Eigen::Matrix; XVType = Eigen::Matrix; ValueType = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:548:32: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:277: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/BooleanRedux.h:108:50: required from 'bool Eigen::DenseBase::any() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >]' glmnetpp/include/glmnetpp_bits/elnet_driver/chkvars.hpp:17:48: required from 'static void glmnetpp::Chkvars::eval(const XType&, JUType&) [with XType = Eigen::Matrix; JUType = std::vector]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:413:28: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/BooleanRedux.h:108:50: required from 'bool Eigen::DenseBase::any() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >]' glmnetpp/include/glmnetpp_bits/elnet_driver/chkvars.hpp:17:48: required from 'static void glmnetpp::Chkvars::eval(const XType&, JUType&) [with XType = Eigen::Matrix; JUType = std::vector]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:413:28: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Block, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:53:40: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:336:80: required from 'struct Eigen::internal::evaluator > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:282:8: required from 'struct Eigen::internal::evaluator > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:438:43: required from 'struct Eigen::internal::unary_evaluator >, -1, 1, true>, Eigen::internal::IteratorBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1087:8: required from 'struct Eigen::internal::block_evaluator >, -1, 1, true, false>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1034:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >; Derived = Eigen::Block >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:338:36: required from 'static void glmnetpp::SpStandardize::eval(const XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper > > >; Derived = Eigen::Block >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:338:36: required from 'static void glmnetpp::SpStandardize::eval(const XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:293:37: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, true>; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, -1, 1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:125:43: required from 'static void glmnetpp::Standardize::eval(XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:46:24: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:87:23: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:343:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:149:16: required from 'auto glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:344:29: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:149:16: required from 'auto glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:270:59: required from 'static void glmnetpp::SpStandardize1::eval(const XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:50:7: required from 'class Eigen::SparseMapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:255:7: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_cov.hpp:96:31: required from 'struct glmnetpp::SpElnetPointInternal::type::cov, double, int, bool>' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:16:8: required from 'struct glmnetpp::ElnetPointCRTPBase::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:8:8: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_cov.hpp:159:16: required from 'auto glmnetpp::SpElnetPath::type::cov, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_cov.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::cov, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:173:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:523:63: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Block, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Block, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:525:41: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:473:36: required from 'static void glmnetpp::LStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:303:36: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:400:33: required from 'static void glmnetpp::MultSpStandardize1::eval(const XType&, YType&, WType&, bool, bool, bool, const JUType&, XMType&, XSType&, YMType&, YSType&, XVType&, ValueType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; YMType = Eigen::Matrix; YSType = Eigen::Matrix; XVType = Eigen::Matrix; ValueType = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:548:32: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::Block, -1, 1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:53:40: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Matrix; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Matrix; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Matrix; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:296:29: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:176:22: required from 'glmnetpp::ElnetPathBinomialBase::state_t glmnetpp::ElnetPathBinomialTwoClassBase::process_point_fit(const FitPackType&, const PathConfigPackType&, const PointConfigPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PointConfigPackType = glmnetpp::ElnetPathBase::PointConfigPack; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; glmnetpp::ElnetPathBinomialBase::state_t = glmnetpp::util::control_flow]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:71:57: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, true>, -1, 1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:180:34: required from 'glmnetpp::ElnetPathBinomialBase::state_t glmnetpp::ElnetPathBinomialTwoClassBase::process_point_fit(const FitPackType&, const PathConfigPackType&, const PointConfigPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PointConfigPackType = glmnetpp::ElnetPathBase::PointConfigPack; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; glmnetpp::ElnetPathBinomialBase::state_t = glmnetpp::util::control_flow]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:71:57: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, -1, 1, false> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >, -1, 1, true>, -1, 1, false> >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:180:45: required from 'glmnetpp::ElnetPathBinomialBase::state_t glmnetpp::ElnetPathBinomialTwoClassBase::process_point_fit(const FitPackType&, const PathConfigPackType&, const PointConfigPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PointConfigPackType = glmnetpp::ElnetPathBase::PointConfigPack; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; glmnetpp::ElnetPathBinomialBase::state_t = glmnetpp::util::control_flow]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:71:57: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:200:29: required from 'void glmnetpp::ElnetPathBinomialTwoClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:200:36: required from 'void glmnetpp::ElnetPathBinomialTwoClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:200:31: required from 'void glmnetpp::ElnetPathBinomialTwoClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:200:52: required from 'void glmnetpp::ElnetPathBinomialTwoClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:406:16: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:406:28: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:406:34: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 1, -1, false> >' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:408:27: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Array.h:45:7: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:408:30: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/SelfCwiseBinaryOp.h:34:67: required from 'Derived& Eigen::ArrayBase::operator-=(const Scalar&) [with Derived = Eigen::ArrayWrapper, 1, -1, false> >; Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:408:30: required from 'void glmnetpp::ElnetPathBinomialMultiClassBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:70:47: required from 'glmnetpp::ElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:70:50: required from 'glmnetpp::ElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:82:44: required from 'glmnetpp::ElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:88:40: required from 'glmnetpp::ElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:86:50: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:108:58: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:108:41: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:185:73: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:225:33: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:185:86: required from 'auto glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::prediction() const [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_base.hpp:140:40: required from 'void glmnetpp::ElnetPathPoissonBase::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:225:33: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::process_path_fit(const FitPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPointType = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:77:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:53:40: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_naive.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:97:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:17:7: required from 'class Eigen::BlockImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:87:22: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:94:25: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_abs_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:62:54: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, YType&, const WType&, const XType&, const XMType&, const XSType&, const XVType&, const VPType&, const CLType&, const JUType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; YType = Eigen::Matrix; WType = Eigen::Matrix; XType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:87:38: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:94:25: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_abs_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:62:54: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, YType&, const WType&, const XType&, const XMType&, const XSType&, const XVType&, const VPType&, const CLType&, const JUType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; YType = Eigen::Matrix; WType = Eigen::Matrix; XType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:88:29: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:94:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:88:41: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:94:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:137:29: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:137:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:137:47: required from 'static typename glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::compute_xv(const XType&, const WType&) [with XType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; WType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:71:52: required from 'glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, const GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Block, -1, 1, true>; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:336:22: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:340:48: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:340:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:400:22: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:400:31: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:400:37: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:23: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:404:35: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:404:54: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:404:47: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:409:27: required from 'static auto glmnetpp::ElnetPointInternalBinomialTwoClassBase::azero(const YType&, const GType&, const QType&) [with YType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Map, 0, Eigen::Stride<0, 0> >; QType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:348:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:350:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:350:62: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:350:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:350:30: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:352:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:352:50: required from 'void glmnetpp::ElnetPointInternalBinomialTwoClassBase::construct(XVFType, GradFType) [with XVFType = glmnetpp::ElnetPointInternal::type::two_class, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, bool, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, const Eigen::Block, -1, 1, true>&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Block, -1, 1, true>&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>; GradFType = glmnetpp::ElnetPointInternal::type::two_class, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, bool, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, const Eigen::Block, -1, 1, true>&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Block, -1, 1, true>&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:70:24: required from 'glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, const GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Block, -1, 1, true>; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:352:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:355:39: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:356:49: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:355:51: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:356:59: required from 'void glmnetpp::ElnetPointInternalBinomialTwoClassBase::construct(XVFType, GradFType) [with XVFType = glmnetpp::ElnetPointInternal::type::two_class, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, bool, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, const Eigen::Block, -1, 1, true>&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Block, -1, 1, true>&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>; GradFType = glmnetpp::ElnetPointInternal::type::two_class, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, bool, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, const Eigen::Block, -1, 1, true>&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Block, -1, 1, true>&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:70:24: required from 'glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, const GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Block, -1, 1, true>; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, 1, -1, false>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:135:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:135:46: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:135:55: required from 'typename glmnetpp::ElnetPointInternal::type::multi_class, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::multi_class, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t, const WType&) const [with WType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:73:51: required from 'glmnetpp::ElnetPointInternal::type::multi_class, ValueType, IndexType, BoolType>::ElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const VPType&, const CLType&, const JUType&, ISType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Matrix; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; ISType = Eigen::Matrix; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1402:44: required from 'typename glmnetpp::SpElnetPointInternalBinomialBase::base_t::value_t glmnetpp::SpElnetPointInternalBinomialBase::compute_xv(typename base_t::index_t, const WType&) const [with WType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalStaticBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_two_class.hpp:76:62: required from 'glmnetpp::SpElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, const GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Block, -1, 1, true>; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_two_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:177:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1409:56: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_two_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:177:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1409:44: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_two_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:177:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1409:68: required from 'typename glmnetpp::SpElnetPointInternalBinomialBase::base_t::value_t glmnetpp::SpElnetPointInternalBinomialBase::compute_grad(typename base_t::index_t, const RType&, const VType&) const [with RType = Eigen::Matrix; VType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalStaticBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_two_class.hpp:77:64: required from 'glmnetpp::SpElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, bool, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, const GType&, typename base_t::value_t&, const XType&, const YType&, const WType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GType = Eigen::Block, -1, 1, true>; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_two_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:177:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:17:7: required from 'class Eigen::BlockImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class_group.hpp:130:48: required from 'typename glmnetpp::SpElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::base_t::state_t glmnetpp::SpElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::update_irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:181:46: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class.hpp:163:38: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:187:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:54: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:60: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:79: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:161:81: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::ElnetPointInternal::type::naive, double, int, bool>::ElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:136:54: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:138:28: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:138:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:138:64: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:139:71: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_naive.hpp:137:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:79: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:161:81: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp::construct::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::index_t)>)::, const Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/poisson_base.hpp:160:37: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:168:65: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::state_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::update_irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalPoissonBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:181:46: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:170:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:170:34: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:170:40: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:170:66: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::state_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::update_irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalPoissonBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:181:46: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:170:79: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:171:78: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::state_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::update_irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalPoissonBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:181:46: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:171:84: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper::type::naive, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBase::PointConfigPack&)::, const Eigen::MatrixWrapper, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >, const Eigen::Matrix > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:169:31: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, true>; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, -1, 1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:125:43: required from 'static void glmnetpp::Standardize::eval(XType&, YType&, WType&, bool, bool, const JUType&, GType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; GType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:422:40: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:46: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:110:23: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::norm() const [with Derived = Eigen::Matrix; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:46:24: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:87:23: required from 'static void glmnetpp::Standardize1::eval(XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 1, -1, false>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false>, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false>, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 1, -1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:270:59: required from 'static void glmnetpp::SpStandardize1::eval(const XType&, YType&, WType&, bool, bool, const JUType&, XMType&, XSType&, ValueType&, ValueType&, XVType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; ValueType = double; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:427:42: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:336:80: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:292:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:438:43: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::internal::IteratorBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1087:8: required from 'struct Eigen::internal::block_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true, false>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1034:8: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:565:53: required from 'struct Eigen::internal::sparse_conjunction_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::internal::IteratorBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:352:8: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::internal::IteratorBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:87:46: required from 'typename glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianNaiveBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_naive.hpp:94:25: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_naive.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::naive, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:180:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:523:63: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Block, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Block, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, -1, 1, true>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:525:41: required from 'static void glmnetpp::MultLStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&, XVType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:300:42: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, -1, 1, true> > > >; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:473:36: required from 'static void glmnetpp::LStandardize1::eval(XType&, const WType&, const JUType&, IntType, IntType, XMType&, XSType&) [with XType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; IntType = bool; XMType = Eigen::Matrix; XSType = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:303:36: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1043:41: required from 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:180:69: required from 'glmnetpp::ElnetPathBinomialBase::state_t glmnetpp::ElnetPathBinomialTwoClassBase::process_point_fit(const FitPackType&, const PathConfigPackType&, const PointConfigPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PointConfigPackType = glmnetpp::ElnetPathBase::PointConfigPack; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; glmnetpp::ElnetPathBinomialBase::state_t = glmnetpp::util::control_flow]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:71:57: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator >, -1, 1, true>, -1, 1, false> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true>, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper >, -1, 1, true>, -1, 1, false> >, const Eigen::CwiseNullaryOp, Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_path/binomial_base.hpp:180:69: required from 'glmnetpp::ElnetPathBinomialBase::state_t glmnetpp::ElnetPathBinomialTwoClassBase::process_point_fit(const FitPackType&, const PathConfigPackType&, const PointConfigPackType&, const ElnetPointType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PointConfigPackType = glmnetpp::ElnetPathBase::PointConfigPack; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointType = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; glmnetpp::ElnetPathBinomialBase::state_t = glmnetpp::util::control_flow]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:71:57: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:538:65: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(typename base_t::index_t, RType&&) [with RType = Eigen::Block, -1, 1, true>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1166:33: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase > >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase > >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:589:22: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, false>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, false>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, false> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, false> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >, 1, -1, false> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:598:32: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:660:39: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiBase::kazero(AZType&&) [with AZType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:600:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:660:45: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiBase::kazero(AZType&&) [with AZType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:600:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:660:54: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiBase::kazero(AZType&&) [with AZType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:600:46: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::internal::member_sum, 1>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::internal::member_sum, 1> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::internal::member_sum, 1> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:56:7: required from 'class Eigen::PartialReduxExpr, Eigen::internal::member_sum, 1>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:661:34: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiBase::kazero(AZType&&) [with AZType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:600:46: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true> >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true> >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:603:65: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:603:47: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:604:48: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:604:51: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:604:79: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:605:60: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:608:55: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:608:37: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:608:65: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1206:37: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1207:44: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1207:26: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1206:39: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1207:57: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1234:47: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1234:77: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, const Eigen::Block, 1, -1, false>, const Eigen::Block, 1, -1, false> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1234:83: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1238:53: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1238:79: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, const Eigen::Transpose, 1, -1, false> >, const Eigen::Transpose, 1, -1, false> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1238:85: required from 'typename glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::base_t::state_t glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls(typename base_t::value_t, UpdatePredictionFType, InitResidFType, ComputeAbsGradFType) [with UpdatePredictionFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>; InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>; ComputeAbsGradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:109:35: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:113:48: required from 'glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&):: [with auto:43 = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:904:24: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1381:42: required from 'void glmnetpp::SpElnetPointInternalBinomialBase::update_with_new_weights(typename base_t::index_t, const VType&, typename base_t::index_t, typename base_t::value_t, typename base_t::value_t&) [with VType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalStaticBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_two_class.hpp:121:55: required from 'void glmnetpp::SpElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::setup_wls(const PointPackType&) [with PointPackType = glmnetpp::ElnetPathBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:179:28: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::two_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_two_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::two_class, glmnetpp::SpElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:177:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:522:43: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(RType&&, const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with RType = Eigen::Matrix&; YT = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VT = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class.hpp:164:33: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:187:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:522:40: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(RType&&, const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with RType = Eigen::Matrix&; YT = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VT = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class.hpp:164:33: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:187:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class.hpp:137:50: required from 'glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&):: [with auto:50 = Eigen::Matrix]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:904:24: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class, glmnetpp::SpElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:187:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:101:54: required from 'glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&):::: [with auto:65 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::; SkipPolicy = glmnetpp::SpElnetPointInternal::type::naive, double, int, bool>::SpElnetPointInternal, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, std::vector, InternalParams>(bool, glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t, glmnetpp::ElnetPointInternalStaticBase::index_t&, Eigen::Map, 0, Eigen::Stride<0, 0> >&, glmnetpp::ElnetPointInternalStaticBase::value_t&, const Eigen::Map >&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const Eigen::Matrix&, const std::vector&, const InternalParams&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:100:51: required from 'glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::SpElnetPointInternal(bool, typename base_t::value_t, typename base_t::index_t, typename base_t::index_t, typename base_t::index_t&, IAType&, typename base_t::value_t&, const XType&, const YType&, const GType&, const QType&, const XBType&, const XSType&, const VPType&, const CLType&, const JUType&, const IntParamType&) [with IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; XBType = Eigen::Matrix; XSType = Eigen::Matrix; VPType = Eigen::Matrix; CLType = Eigen::Matrix; JUType = std::vector; IntParamType = InternalParams; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_multi.hpp:83:35: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, 7>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_multi.hpp:83:38: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Block, -1, 1, true> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/standardize.hpp:400:33: required from 'static void glmnetpp::MultSpStandardize1::eval(const XType&, YType&, WType&, bool, bool, bool, const JUType&, XMType&, XSType&, YMType&, YSType&, XVType&, ValueType&) [with XType = Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; XMType = Eigen::Matrix; XSType = Eigen::Matrix; YMType = Eigen::Matrix; YSType = Eigen::Matrix; XVType = Eigen::Matrix; ValueType = double]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:548:32: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:101:37: required from 'void glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t, GType&&) const [with GType = Eigen::Matrix&; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:108:21: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_multi.hpp:155:25: required from 'void glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:318:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:101:40: required from 'void glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t, GType&&) const [with GType = Eigen::Matrix&; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:108:21: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_multi.hpp:155:25: required from 'void glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:318:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:101:55: required from 'void glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t, GType&&) const [with GType = Eigen::Matrix&; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:108:21: required from 'typename glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::compute_abs_grad(typename base_t::index_t, GType&&) const [with GType = Eigen::Matrix&; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianMultiBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:68:81: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_multi.hpp:155:25: required from 'void glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:318:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_naive.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:97:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:522:43: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(RType&&, const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with RType = Eigen::Block, -1, 1, true>&; YT = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VT = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:538:25: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:522:40: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(RType&&, const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with RType = Eigen::Block, -1, 1, true>&; YT = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VT = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:538:25: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Array.h:45:7: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:643:34: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::update_irls_class(PredBuffType&&, typename base_t::value_t, const OffsetType&, QType&&, UpdatePredictionFType) [with PredBuffType = Eigen::Matrix&; OffsetType = Eigen::Block >, -1, 1, true>; QType = Eigen::Block, -1, 1, true>; UpdatePredictionFType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>)::::index_t)>::; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1244:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::CwiseNullaryOp, Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::CwiseNullaryOp, Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::CwiseNullaryOp, Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::CwiseNullaryOp, Eigen::Array > >, const Eigen::CwiseNullaryOp, Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:645:81: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::update_irls_class(PredBuffType&&, typename base_t::value_t, const OffsetType&, QType&&, UpdatePredictionFType) [with PredBuffType = Eigen::Matrix&; OffsetType = Eigen::Block >, -1, 1, true>; QType = Eigen::Block, -1, 1, true>; UpdatePredictionFType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>)::::index_t)>::; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1244:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:647:65: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::update_irls_class(PredBuffType&&, typename base_t::value_t, const OffsetType&, QType&&, UpdatePredictionFType) [with PredBuffType = Eigen::Matrix&; OffsetType = Eigen::Block >, -1, 1, true>; QType = Eigen::Block, -1, 1, true>; UpdatePredictionFType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>)::::index_t)>::; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1244:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, const Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > > >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:648:53: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::update_irls_class(PredBuffType&&, typename base_t::value_t, const OffsetType&, QType&&, UpdatePredictionFType) [with PredBuffType = Eigen::Matrix&; OffsetType = Eigen::Block >, -1, 1, true>; QType = Eigen::Block, -1, 1, true>; UpdatePredictionFType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_irls::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)> >(glmnetpp::ElnetPointInternalStaticBase::value_t, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:47&)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t)>, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_irls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:48&)>)::::index_t)>::; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1244:46: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 1, -1, false> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1044:49: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiClassBase::elc(typename base_t::value_t, const CLType&, const AType&) [with CLType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; AType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:900:30: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1044:51: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiClassBase::elc(typename base_t::value_t, const CLType&, const AType&) [with CLType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; AType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:900:30: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 1, -1, false> >, const Eigen::CwiseNullaryOp, const Eigen::Array > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1044:59: required from 'auto glmnetpp::ElnetPointInternalBinomialMultiClassBase::elc(typename base_t::value_t, const CLType&, const AType&) [with CLType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; AType = Eigen::Block, 1, -1, false>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:900:30: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_multi.hpp:84:33: required from 'void glmnetpp::SpElnetPointInternal::type::multi, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_multi.hpp:39:27: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_multi.hpp:155:25: required from 'void glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:318:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, false> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, -1, 1, false>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, -1, 1, false>; U = Eigen::Block, 1, -1, false>, 1, -1, false>; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator >, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block >, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:598:51: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::construct() [with ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1180:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:124:49: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, 7>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:124:52: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:531:48: required from 'void glmnetpp::ElnetPointInternalBinomialMultiBase::initialize_resid(RType&&, const Eigen::MatrixBase&, const Eigen::MatrixBase&, typename base_t::value_t) [with RType = Eigen::Block, -1, 1, true>&; YT = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; VT = Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:546:25: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase > >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase > >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:647:16: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:120:7: required from 'class Eigen::internal::dense_product_base >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, 7>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:152:7: required from 'class Eigen::ProductImpl >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Product.h:71:7: required from 'class Eigen::Product >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class_group.hpp:155:52: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseNullaryOp, const Eigen::Matrix > > >, const Eigen::CwiseNullaryOp, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class_group.hpp:156:37: required from 'void glmnetpp::SpElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t, DestType&&) const [with DestType = Eigen::Matrix&; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class_group.hpp:162:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, -1, 1, true>, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, -1, 1, true>, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, -1, 1, true>, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:86:30: required from 'glmnetpp::ElnetPointCRTPBase::state_t glmnetpp::ElnetPointCRTPBase::update(typename glmnetpp::details::traits::internal_t::index_t, const PointPackType&, DiffType&&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; PointPackType = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; DiffType = Eigen::Matrix&; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >; state_t = glmnetpp::util::control_flow; typename glmnetpp::details::traits::internal_t::index_t = int; internal_t = glmnetpp::ElnetPointInternal::type::multi, double, int, bool>]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:62:53: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:589:55: required from 'void glmnetpp::ElnetPointInternalGaussianMultiBase::update_rsq(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:64:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:589:85: required from 'void glmnetpp::ElnetPointInternalGaussianMultiBase::update_rsq(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:64:25: required from 'typename glmnetpp::ElnetPointGaussianBase::base_t::state_t glmnetpp::ElnetPointGaussianBase::update(typename base_t::index_t, const PointPackType&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointPackType = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; DiffType = Eigen::Matrix&; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_multi.hpp:37:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:589:38: required from 'void glmnetpp::ElnetPointInternalGaussianMultiBase::update_rsq(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:64:25: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator >, -1, 1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::ArrayWrapper >, -1, 1, true> >, const Eigen::CwiseNullaryOp, const Eigen::Array > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_multi.hpp:155:25: required from 'void glmnetpp::SpElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi, glmnetpp::SpElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:318:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multspelnet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:435:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_naive.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:97:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_cov.hpp:88:35: required from 'static auto glmnetpp::SpElnetPointInternal::type::cov, ValueType, IndexType, BoolType>::compute_sp_cov(const X1Type&, const X2Type&, const WType&, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t) [with X1Type = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; X2Type = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; WType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianCovBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_cov.hpp:65:42: required from 'void glmnetpp::SpElnetPointInternal::type::cov, ValueType, IndexType, BoolType>::update_active(typename base_t::index_t) [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianCovBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:81:44: required from 'glmnetpp::ElnetPointCRTPBase::state_t glmnetpp::ElnetPointCRTPBase::update(typename glmnetpp::details::traits::internal_t::index_t, const PointPackType&, DiffType&&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; PointPackType = glmnetpp::ElnetPathBase::PointConfigPack; DiffType = double&; ElnetPointDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> >; state_t = glmnetpp::util::control_flow; typename glmnetpp::details::traits::internal_t::index_t = int; internal_t = glmnetpp::SpElnetPointInternal::type::cov, double, int, bool>]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:62:53: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_gaussian_cov.hpp:151:25: required from 'void glmnetpp::SpElnetPath::type::cov, SpElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; ULamType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; SpElnetPointPolicy = glmnetpp::SpElnetPoint::type::cov, glmnetpp::SpElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:173:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spelnet_exp(int, double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:103:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Block, -1, 1, true>; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Block, -1, 1, true>; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, -1, 1, true> >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, -1, 1, true>; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:101:57: required from 'void glmnetpp::ElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::setup_wls(const PointPackType&) [with PointPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ValueType = double; IndexType = int; BoolType = bool]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:179:28: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::irls(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, -1, 1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator, -1, 1, false> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, -1, 1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 1, -1, false>, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose, -1, 1, false> >, const Eigen::Block, 1, -1, false>, 1, -1, false> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:30:31: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:91:45: required from 'void glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:91:72: required from 'void glmnetpp::ElnetPointInternal::type::two_class, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialTwoClassBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: required from 'typename glmnetpp::ElnetPointNonLinearCRTPBase::base_t::state_t glmnetpp::ElnetPointNonLinearCRTPBase::update(typename base_t::index_t, const PointConfigPack&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; DiffType = double&; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:141:36: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose, 1, -1, false> >, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:86:30: required from 'glmnetpp::ElnetPointCRTPBase::state_t glmnetpp::ElnetPointCRTPBase::update(typename glmnetpp::details::traits::internal_t::index_t, const PointPackType&, DiffType&&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; PointPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; DiffType = Eigen::Matrix&; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; state_t = glmnetpp::util::control_flow; typename glmnetpp::details::traits::internal_t::index_t = int; internal_t = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:127:53: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:82:43: required from 'void glmnetpp::ElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathPoissonBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/poisson_naive.hpp:107:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:78:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = fishnet_exp(double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:270:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:140:39: required from 'void glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: required from 'typename glmnetpp::ElnetPointNonLinearCRTPBase::base_t::state_t glmnetpp::ElnetPointNonLinearCRTPBase::update(typename base_t::index_t, const PointConfigPack&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; DiffType = double&; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:141:36: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::update(typename base_t::index_t, const PointConfigPack&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointCRTPBase::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> > >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:321:55: required from 'void glmnetpp::ElnetPointInternalBaseViewer::update_dlx(const Eigen::MatrixBase&, typename base_t::value_t) [with T = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalStaticBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:578:27: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Map >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:206:64: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_naive.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::naive, glmnetpp::ElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:97:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:137:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:142:33: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:322:24: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:405:33: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> > > >, const Eigen::CwiseUnaryOp, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > > >; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:355:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Matrix&; XType = Eigen::MatrixWrapper, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:89:39: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >; Func = Eigen::internal::scalar_max_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:448:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with int NaNPropagation = 0; Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:466:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper, -1, 1, true> >, const Eigen::ArrayWrapper > > > >, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1208:43: required from 'void glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::setup_wls(typename base_t::value_t, typename base_t::value_t, InitResidFType) [with InitResidFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::setup_wls >(const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, glmnetpp::ElnetPointInternalStaticBase::value_t)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBinomialMultiBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:95:26: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false> > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 1, -1, false> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:219:37: required from 'static constexpr bool glmnetpp::ElnetPointInternalStaticBase::equal(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T1 = Eigen::Matrix; T2 = Eigen::Transpose, 1, -1, false> >; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:75:24: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Block, -1, 1, true>; XType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class_group.hpp:80:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:135:21: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::get_elnet_point(const FitPackType&, PathConfigPackType&&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassBase::PathConfigPack&; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Block, -1, 1, true>; XType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_binomial_multi_class_group.hpp:91:43: required from 'void glmnetpp::SpElnetPointInternal::type::multi_class_group, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: required from 'typename glmnetpp::ElnetPointNonLinearCRTPBase::base_t::state_t glmnetpp::ElnetPointNonLinearCRTPBase::update(typename base_t::index_t, const PointConfigPack&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; DiffType = Eigen::Matrix&; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/binomial_multi_class_group.hpp:34:37: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Matrix&; XType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_poisson_naive.hpp:138:39: required from 'void glmnetpp::SpElnetPointInternal::type::naive, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalPoissonBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:129:27: required from 'typename glmnetpp::ElnetPointNonLinearCRTPBase::base_t::state_t glmnetpp::ElnetPointNonLinearCRTPBase::update(typename base_t::index_t, const PointConfigPack&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; DiffType = double&; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:141:36: [ skipping 6 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::naive>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::naive>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_poisson_naive.hpp:169:25: required from 'void glmnetpp::SpElnetPath::type::naive, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const QType&, IntType, ValueType, const ULamType&, const XBType&, const XSType&, ValueType, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; QType = Eigen::Matrix; ULamType = Eigen::Map >; XBType = Eigen::Matrix; XSType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::naive, glmnetpp::SpElnetPointInternal::type::naive, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:144:23: required from 'static void glmnetpp::details::FitPathPoisson::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, ValueType, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/poisson.hpp:255:52: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Map >; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = spfishnet_exp(double, Eigen::Map >, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:326:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:647:31: required from 'static void glmnetpp::ElnetPointInternalGaussianMultiBase::update_beta(typename base_t::index_t, AType&&, typename base_t::value_t, typename base_t::value_t, GCurrType&&, GNextType&&, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, typename base_t::index_t, ISCType&&, const CLType&, GradFType) [with AType = Eigen::Block, -1, 1, true>; GCurrType = Eigen::Matrix&; GNextType = Eigen::Matrix&; ISCType = Eigen::Matrix&; CLType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GradFType = glmnetpp::ElnetPointInternal::type::multi, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack&)::::index_t, auto:22&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:617:20: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Block, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:647:25: required from 'static void glmnetpp::ElnetPointInternalGaussianMultiBase::update_beta(typename base_t::index_t, AType&&, typename base_t::value_t, typename base_t::value_t, GCurrType&&, GNextType&&, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, typename base_t::index_t, ISCType&&, const CLType&, GradFType) [with AType = Eigen::Block, -1, 1, true>; GCurrType = Eigen::Matrix&; GNextType = Eigen::Matrix&; ISCType = Eigen::Matrix&; CLType = Eigen::Map, 0, Eigen::Stride<0, 0> >; GradFType = glmnetpp::ElnetPointInternal::type::multi, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack&)::::index_t, auto:22&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:617:20: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_two_class.hpp:137:21: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Block, -1, 1, true>, Eigen::Block, -1, 1, true>, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::two_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_two_class.hpp:109:25: required from 'void glmnetpp::ElnetPath::type::two_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Block, -1, 1, true>; GType = Eigen::Block, -1, 1, true>; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::two_class, glmnetpp::ElnetPointInternal::type::two_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:91:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:570:28: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map, 0, Eigen::Stride<0, 0> >, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map, 0, Eigen::Stride<0, 0> >; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, const Eigen::ArrayWrapper, -1, 1, true> > > >; Derived = Eigen::Map, 0, Eigen::Stride<0, 0> >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:604:29: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Matrix >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; U = Eigen::Matrix; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Matrix; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:610:38: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 1, -1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 1, -1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase > >, 1, -1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense > >, 1, -1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::ArrayWrapper >, const Eigen::ArrayWrapper, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Matrix > > > >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:589:92: required from 'void glmnetpp::ElnetPointInternalGaussianMultiBase::update_rsq(typename base_t::index_t, const DiffType&) [with DiffType = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:64:25: required from 'typename glmnetpp::ElnetPointGaussianBase::base_t::state_t glmnetpp::ElnetPointGaussianBase::update(typename base_t::index_t, const PointPackType&, DiffType&&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointPackType = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; DiffType = Eigen::Matrix&; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >; typename base_t::state_t = glmnetpp::util::control_flow; base_t = glmnetpp::ElnetPointCRTPBase::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> > >; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_multi.hpp:37:50: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:647:31: required from 'static void glmnetpp::ElnetPointInternalGaussianMultiBase::update_beta(typename base_t::index_t, AType&&, typename base_t::value_t, typename base_t::value_t, GCurrType&&, GNextType&&, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, typename base_t::index_t, ISCType&&, const CLType&, GradFType) [with AType = Eigen::Transpose, 1, -1, false> >; GCurrType = Eigen::Matrix&; GNextType = Eigen::Matrix&; ISCType = Eigen::Matrix&; CLType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_beta::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)> >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)>&)::; GradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1187:38: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Transpose, 1, -1, false> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:647:25: required from 'static void glmnetpp::ElnetPointInternalGaussianMultiBase::update_beta(typename base_t::index_t, AType&&, typename base_t::value_t, typename base_t::value_t, GCurrType&&, GNextType&&, typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, typename base_t::index_t, ISCType&&, const CLType&, GradFType) [with AType = Eigen::Transpose, 1, -1, false> >; GCurrType = Eigen::Matrix&; GNextType = Eigen::Matrix&; ISCType = Eigen::Matrix&; CLType = glmnetpp::ElnetPointInternalBinomialMultiClassGroupBase::update_beta::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)> >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)>&)::; GradFType = glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool>::update_beta >(glmnetpp::ElnetPointInternalStaticBase::index_t, const glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack&)::::index_t, auto:46&)>; ValueType = double; IndexType = int; BoolType = bool; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:1187:38: [ skipping 10 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Matrix, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Matrix; U = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; Derived = Eigen::Matrix; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_multi_class.hpp:135:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi_class, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class, glmnetpp::ElnetPointInternal::type::multi_class, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:101:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:333: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:306:38: required from 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:347:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Dest = Eigen::Matrix; typename Dest::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:310:42: required from 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:347:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Dest = Eigen::Matrix; typename Dest::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h: In instantiation of 'class Eigen::internal::gemv_traits': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:314:45: required from 'struct Eigen::internal::general_matrix_vector_product, 1, false, double, Eigen::internal::const_blas_data_mapper, false, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/GeneralProduct.h:347:132: required from 'static void Eigen::internal::gemv_dense_selector<2, 1, true>::run(const Lhs&, const Rhs&, Dest&, const typename Dest::Scalar&) [with Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Dest = Eigen::Matrix; typename Dest::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:388:34: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dest&, const Lhs&, const Rhs&, const Scalar&) [with Dest = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: required from 'static void Eigen::internal::generic_product_impl_base::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:349:33: required from 'static void Eigen::internal::generic_product_impl_base::evalTo(Dst&, const Lhs&, const Rhs&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose > >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::internal::generic_product_impl > >, Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::DenseShape, Eigen::DenseShape, 7>]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:148:43: [ skipping 8 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:44:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 44 | PACKET_DECL_COND_PREFIX(_, Lhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:45:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 45 | PACKET_DECL_COND_PREFIX(_, Rhs, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:46:27: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] 46 | PACKET_DECL_COND_PREFIX(_, Res, _PacketSize); | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:42:3: note: in definition of macro 'PACKET_DECL_COND_PREFIX' 42 | prefix ## name ## Packet | ^~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 51 | Vectorizable = unpacket_traits<_LhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:51:53: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 52 | unpacket_traits<_RhsPacket>::vectorizable && | ^~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:52:38: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:42: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 53 | int(unpacket_traits<_LhsPacket>::size)==int(unpacket_traits<_RhsPacket>::size), | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:53:82: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 54 | LhsPacketSize = Vectorizable ? unpacket_traits<_LhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:54:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 55 | RhsPacketSize = Vectorizable ? unpacket_traits<_RhsPacket>::size : 1, | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:55:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 56 | ResPacketSize = Vectorizable ? unpacket_traits<_ResPacket>::size : 1 | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:56:69: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 59 | typedef typename conditional::type LhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:59:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 60 | typedef typename conditional::type RhsPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:60:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] 61 | typedef typename conditional::type ResPacket; | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/products/GeneralMatrixVector.h:61:73: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, -1, 1, true>, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 1, -1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense >, 1, -1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseTranspose.h:22:9: required from 'class Eigen::internal::SparseTransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 1024>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseTranspose.h:45:37: required from 'class Eigen::TransposeImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDenseProduct.h:216:60: required from 'static void Eigen::internal::generic_product_impl::scaleAndAddTo(Dst&, const Lhs&, const Rhs&, const Scalar&) [with Dst = Eigen::Matrix; Lhs = Eigen::Transpose >; Rhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; int ProductType = 7; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:361:27: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDenseProduct.h:216:83: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::SpElnetPath::type::multi_class_group>::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::SpElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/sp_binomial_multi_class_group.hpp:171:25: required from 'void glmnetpp::SpElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XMType&, const XSType&, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::SpElnetPoint::type::multi_class_group, glmnetpp::SpElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:182:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = const Eigen::Map >; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = splognet_exp(double, Eigen::Map >, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:214:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase > >, 1, -1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase > >, 1, -1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl > >, 1, -1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose > >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block > >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_cov.hpp:55:65: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPath::type::cov>::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::cov>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_cov.hpp:136:25: required from 'void glmnetpp::ElnetPath::type::cov, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, GType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; GType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Matrix; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::cov, glmnetpp::ElnetPointInternal::type::cov, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:90:27: required from 'static void glmnetpp::details::FitPathGaussian::eval(bool, ValueType, const XType&, YType&, GType&, const WType&, const JUType&, const VQType&, const XMType&, const XSType&, const XVType&, const CLType&, IntType, IntType, IntType, ValueType, const VLamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VQType = Eigen::Matrix; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; CLType = Eigen::Matrix; VLamType = Eigen::Matrix; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true; bool is_multi = false]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:439:60: required from 'void glmnetpp::ElnetDriver::fit(bool, ValueType, XType&, YType&, WType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = elnet_exp(int, double, Eigen::MatrixXd, Eigen::VectorXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:49:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 2, -1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 2, -1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 2, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 2, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 2, -1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 2, -1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 15 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 2, -1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, 2, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PartialReduxEvaluator.h:217:20: required from 'PacketType Eigen::internal::evaluator >::packet(Eigen::Index) const [with int LoadMode = 0; PacketType = __vector(2) double; ArgType = Eigen::Matrix; MemberOp = Eigen::internal::member_sum; int Direction = 1; Eigen::Index = long int]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:681:114: required from 'void Eigen::internal::generic_dense_assignment_kernel::assignPacket(Eigen::Index) [with int StoreMode = 16; int LoadMode = 0; PacketType = __vector(2) double; DstEvaluatorTypeT = Eigen::internal::evaluator >; SrcEvaluatorTypeT = Eigen::internal::evaluator, Eigen::internal::member_sum, 1> >; Functor = Eigen::internal::assign_op; int Version = 0; Eigen::Index = long int]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:437:75: required from 'static void Eigen::internal::dense_assignment_loop::run(Kernel&) [with Kernel = Eigen::internal::generic_dense_assignment_kernel >, Eigen::internal::evaluator, Eigen::internal::member_sum, 1> >, Eigen::internal::assign_op, 0>]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:785:37: required from 'void Eigen::internal::call_dense_assignment_loop(DstXprType&, const SrcXprType&, const Functor&) [with DstXprType = Eigen::Matrix; SrcXprType = Eigen::PartialReduxExpr, member_sum, 1>; Functor = assign_op]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:954:31: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose, 1, -1, false> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose, 1, -1, false> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::Transpose, 1, -1, false> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::Transpose, 1, -1, false> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:98:40: required from 'typename Eigen::NumTraits::Scalar>::Real Eigen::MatrixBase::squaredNorm() const [with Derived = Eigen::Transpose, 1, -1, false> >; typename Eigen::NumTraits::Scalar>::Real = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:703:33: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:118:56: required from 'void glmnetpp::ElnetPointNonLinearCRTPBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathBinomialMultiClassBase::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >; Func = Eigen::internal::scalar_max_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::ArrayWrapper > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_max_op; Derived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:448:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with int NaNPropagation = 0; Derived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:466:37: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::maxCoeff() const [with Derived = Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper > >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:321:66: required from 'void glmnetpp::ElnetPointInternalBaseViewer::update_dlx(const Eigen::MatrixBase&, typename base_t::value_t) [with T = Eigen::Matrix; ValueType = double; IndexType = int; BoolType = bool; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalStaticBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:578:27: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPathGaussianMultiBase::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:56:36: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 1, -1, false>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 1, -1, false>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 1, -1, false>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 1, -1, false, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 16 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase >, 1, -1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:118:37: required from 'class Eigen::TransposeImpl >, 1, -1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Transpose.h:52:37: required from 'class Eigen::Transpose >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:23: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:56: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator > >, 1, -1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator > >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator > >, 1, -1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator > >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator > >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 17 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: [ skipping 14 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator >, 1, -1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:311:41: required from 'struct Eigen::internal::unary_evaluator >, 1, -1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator >, 1, -1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 18 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose > >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block > >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; Derived = Eigen::Block > >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 11 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'auto glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathGaussianMultiBase::FitPack, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi>]' glmnetpp/include/glmnetpp_bits/elnet_path/gaussian_multi.hpp:108:25: required from 'void glmnetpp::ElnetPath::type::multi, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, YType&, IntType, IntType, const XType&, IntType, ValueType, const ULamType&, ValueType, IntType, const XVType&, ValueType, IntType&, AOType&, IAType&, KinType&, RSQOType&, ALMOType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RSQOType = Eigen::Map >; ALMOType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi, glmnetpp::ElnetPointInternal::type::multi, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:250:23: required from 'static void glmnetpp::details::FitPathGaussian::eval(ValueType, const JUType&, const VQType&, const CLType&, YType&, const WType&, IntType, IntType, const XType&, IntType, ValueType, const VLamType&, ValueType, IntType, const XMType&, const XSType&, const XVType&, ValueType, IntType&, A0Type&, CAType&, IAType&, NinType&, RsqType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) [with ValueType = double; JUType = std::vector; VQType = Eigen::Matrix; CLType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; VLamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:562:59: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, WType&, const JDType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, bool, IntType, IntType&, A0Type&, AOType&, IAType&, KinType&, RsqoType&, AlmoType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; WType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; IntType = int; ULamType = Eigen::Map >; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; RsqoType = Eigen::Map >; AlmoType = Eigen::Map >; SetpbFType = multelnet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::VectorXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:381:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 1, -1, false> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:357:7: required from 'class Eigen::internal::redux_evaluator, 1, -1, false> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:414:17: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Block, 1, -1, false>; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/VectorwiseOp.h:114:1: required from 'ResultType Eigen::internal::member_sum::operator()(const XprType&) const [with XprType = Eigen::Block, 1, -1, false>; ResultType = double; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PartialReduxEvaluator.h:183:21: required from 'const Eigen::internal::evaluator >::Scalar Eigen::internal::evaluator >::coeff(Eigen::Index) const [with ArgType = Eigen::Matrix; MemberOp = Eigen::internal::member_sum; int Direction = 1; Scalar = double; Eigen::Index = long int]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PartialReduxEvaluator.h:214:47: [ skipping 13 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Transpose >, 1, -1, true> >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:50:63: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Block >, 1, -1, true>; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, -1, 1, true>; Derived = Eigen::Block >, 1, -1, true>; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ProductEvaluators.h:380:62: [ skipping 12 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from 'glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::elnet_point_t glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::get_elnet_point(const FitPackType&, const PathConfigPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; PathConfigPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::PathConfigPack; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >; elnet_point_t = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_path/base.hpp:46:56: required from 'void glmnetpp::ElnetPathCRTPBase::fit(const FitPackType&) const [with FitPackType = glmnetpp::ElnetPathBinomialMultiClassGroupBase::FitPack, Eigen::Matrix, Eigen::Matrix, int, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Matrix, Eigen::Map >, Eigen::Matrix, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::Map >, lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::, InternalParams>; ElnetPathDerived = glmnetpp::ElnetPath::type::multi_class_group>]' glmnetpp/include/glmnetpp_bits/elnet_path/binomial_multi_class_group.hpp:112:25: required from 'void glmnetpp::ElnetPath::type::multi_class_group, ElnetPointPolicy>::fit(ValueType, const JUType&, const VPType&, const CLType&, IntType, IntType, const XType&, const YType&, GType&, const WType&, IntType, ValueType, const ULamType&, ValueType, bool, IntType, const XVType&, IntType&, A0Type&, AOType&, IAType&, KinType&, ValueType&, DevType&, ALMType&, IntType&, IntType&, SetpbFType, const IntParamType&) const [with ValueType = double; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; ULamType = Eigen::Map >; XVType = Eigen::Matrix; A0Type = Eigen::Map >; AOType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; KinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; ALMType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; ElnetPointPolicy = glmnetpp::ElnetPoint::type::multi_class_group, glmnetpp::ElnetPointInternal::type::multi_class_group, double, int, bool> >]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:96:27: required from 'static void glmnetpp::details::FitPathBinomial::eval(ValueType, const XType&, const YType&, GType&, const WType&, const JUType&, const VPType&, const CLType&, IntType, IntType, IntType, ValueType, const ULamType&, const XMType&, const XSType&, const XVType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, const IntParamType&) [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; WType = Eigen::Matrix; JUType = std::vector; VPType = Eigen::Matrix; CLType = Eigen::Matrix; IntType = int; ULamType = Eigen::Map >; XMType = Eigen::Matrix; XSType = Eigen::Matrix; XVType = Eigen::Matrix; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams; bool is_dense = true]' glmnetpp/include/glmnetpp_bits/elnet_driver/binomial.hpp:309:53: required from 'void glmnetpp::ElnetDriver::fit(ValueType, XType&, YType&, GType&, const JDType&, const VPType&, CLType&, IntType, IntType, IntType, ValueType, const ULamType&, ValueType, bool, bool, IntType, IntType, LmuType&, A0Type&, CAType&, IAType&, NinType&, ValueType&, DevType&, AlmType&, IntType&, IntType&, SetpbFType, IntParamType) const [with ValueType = double; XType = Eigen::Matrix; YType = Eigen::Matrix; GType = Eigen::Matrix; JDType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Matrix; ULamType = Eigen::Map >; IntType = int; LmuType = int; A0Type = Eigen::Map >; CAType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; NinType = Eigen::Map, 0, Eigen::Stride<0, 0> >; DevType = Eigen::Map >; AlmType = Eigen::Map >; SetpbFType = lognet_exp(double, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::MatrixXd, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map >, Eigen::MatrixXd, int, int, int, double, Eigen::Map >, double, int, int, int, int, SEXP, int, Eigen::Map >, Eigen::Map >, Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Map, 0, Eigen::Stride<0, 0> >, double, Eigen::Map >, Eigen::Map >, int, int)::::; IntParamType = InternalParams]' elnet_exp.cpp:158:19: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c glmnet_init.cpp -o glmnet_init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c internal.cpp -o internal.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from internal.cpp:4: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pb.c -o pb.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pb_exp.cpp -o pb_exp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -Iglmnetpp/include -Iglmnetpp/src -Iglmnetpp/test -DEIGEN_PERMANENTLY_DISABLE_STUPID_WARNINGS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wls_exp.cpp -o wls_exp.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from wls_exp.cpp:2: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:18:8: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:24:49: required from 'struct Eigen::internal::traits > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:32:48: required from 'struct Eigen::internal::accessors_level > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/ForwardDeclarations.h:111:75: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' glmnetpp/include/glmnetpp_bits/elnet_driver/gaussian.hpp:555:34: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:400:10: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:38: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Array >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::Array > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Array >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Array.h:45:7: required from 'class Eigen::Array' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:402:39: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:409:48: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Array >, const Eigen::ArrayWrapper > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/binomial_base.hpp:409:49: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase >, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:223:34: required from 'class Eigen::MapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: required from 'class Eigen::Map >' wls_exp.cpp:40:5: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:796:8: required from 'struct glmnetpp::ElnetPointInternalGaussianWLSBase' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:10:8: required from 'struct glmnetpp::ElnetPointInternal::type::wls, double, int, int>' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:16:8: required from 'struct glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:8:8: required from 'struct glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:9:8: required from 'struct glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >' wls_exp.cpp:52:17: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Map.h:94:79: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:796:8: required from 'struct glmnetpp::ElnetPointInternalGaussianWLSBase' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:10:8: required from 'struct glmnetpp::ElnetPointInternal::type::wls, double, int, int>' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:16:8: required from 'struct glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:8:8: required from 'struct glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:9:8: required from 'struct glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >' wls_exp.cpp:52:17: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:50:7: required from 'class Eigen::SparseMapBase >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:148:7: required from 'class Eigen::SparseMapBase >, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:222:7: required from 'class Eigen::Map >' wls_exp.cpp:113:5: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:50:7: required from 'class Eigen::SparseMapBase, 0, Eigen::Stride<0, 0> >, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:255:7: required from 'class Eigen::Map, 0, Eigen::Stride<0, 0> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:150:32: required from 'struct glmnetpp::SpElnetPointInternal::type::wls, double, int, int>' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:16:8: required from 'struct glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:8:8: required from 'struct glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:9:8: required from 'struct glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >' glmnetpp/include/glmnetpp_bits/elnet_point/sp_gaussian_wls.hpp:7:8: required from 'struct glmnetpp::SpElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >' wls_exp.cpp:125:17: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: required from 'class Eigen::BlockImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:22: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:42:7: required from 'class Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:31: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayBase.h:39:34: required from 'class Eigen::ArrayBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:94:7: required from 'class Eigen::CwiseUnaryOpImpl, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseUnaryOp.h:55:7: required from 'class Eigen::CwiseUnaryOp, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:40: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/ArrayWrapper.h:140:7: required from 'class Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:49: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:17:7: required from 'class Eigen::BlockImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:133:28: required from 'typename glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:85:41: required from 'glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, const XMType&, const XSType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XMType = Eigen::Map >; XSType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:133:44: required from 'typename glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:85:41: required from 'glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, const XMType&, const XSType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XMType = Eigen::Map >; XSType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:336:80: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMap.h:292:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:438:43: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::internal::IteratorBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1087:8: required from 'struct Eigen::internal::block_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true, false>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1034:8: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:334:8: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IteratorBased, Eigen::internal::IteratorBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:133:59: required from 'typename glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:85:41: required from 'glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, const XMType&, const XSType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XMType = Eigen::Map >; XSType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:277: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:407:54: required from 'struct Eigen::internal::sparse_conjunction_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IteratorBased, Eigen::internal::IteratorBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:334:8: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IteratorBased, Eigen::internal::IteratorBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseDot.h:29:32: required from 'typename Eigen::internal::traits::Scalar Eigen::SparseMatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:133:59: required from 'typename glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:85:41: required from 'glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, const XMType&, const XSType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XMType = Eigen::Map >; XSType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:55: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:44: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Map >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:206:64: required from 'static auto glmnetpp::ElnetPointInternalStaticBase::compute_grad(const RType&, const XType&) [with RType = Eigen::Map >; XType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:118:36: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:123:25: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_abs_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:75:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::Map >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::Map >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::Map >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::Map >; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:83:33: required from 'glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::SpElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, const XMType&, const XSType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XMType = Eigen::Map >; XSType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1384:41: required from 'struct Eigen::internal::evaluator_wrapper_base, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1464:8: required from 'struct Eigen::internal::unary_evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:564:45: required from 'struct Eigen::internal::unary_evaluator, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >, Eigen::internal::IndexBased, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:90:8: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:55: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:481:7: required from 'class Eigen::DenseCoeffsBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 2>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MapBase.h:37:34: required from 'class Eigen::MapBase, 0, Eigen::Stride<0, 0> >, -1, 1, true>, 0>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:329:7: required from 'class Eigen::internal::BlockImpl_dense, 0, Eigen::Stride<0, 0> >, -1, 1, true, true>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:154:7: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:94:39: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, const Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:38:28: required from 'struct Eigen::internal::traits, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:928:52: required from 'auto glmnetpp::ElnetPointInternalGaussianWLSBase::update_intercept(typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBaseViewer]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:99:33: required from 'void glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::update_intercept() [with ValueType = double; IndexType = int; BoolType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:55:31: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:928:52: required from 'auto glmnetpp::ElnetPointInternalGaussianWLSBase::update_intercept(typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalBaseViewer]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:99:33: required from 'void glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::update_intercept() [with ValueType = double; IndexType = int; BoolType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:55:31: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseBlock.h:17:7: required from 'class Eigen::BlockImpl, 0, Eigen::Stride<0, 0> >, -1, 1, true, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Block.h:103:81: required from 'class Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:110:23: required from 'void glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = int; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:57:27: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::update(typename base_t::index_t, const PointPackType&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointPackType = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:128:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:110:39: required from 'void glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = int; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:57:27: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::update(typename base_t::index_t, const PointPackType&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointPackType = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:128:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:148:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Dense>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Map >&; XType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:92:39: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > > >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:36:7: required from 'class Eigen::CwiseBinaryOpImpl, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::Sparse>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:77:7: required from 'class Eigen::CwiseBinaryOp, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_base.hpp:381:24: required from 'static void glmnetpp::ElnetPointInternalGaussianNaiveBase::update_resid(RType&&, typename base_t::value_t, const XType&) [with RType = Eigen::Map >&; XType = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianUniBase]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:109:39: required from 'void glmnetpp::SpElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::update_resid(typename base_t::index_t, typename base_t::value_t) [with ValueType = double; IndexType = int; BoolType = int; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::value_t = double]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:57:27: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::update(typename base_t::index_t, const PointPackType&) [with typename base_t::update_t upd = glmnetpp::util::update_t::full; PointPackType = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>; typename base_t::index_t = int; base_t = glmnetpp::ElnetPointGaussianBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:128:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >, const Eigen::Map, 0, Eigen::Stride<0, 0> > >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; U = Eigen::Map, 0, Eigen::Stride<0, 0> >; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::MatrixWrapper, const Eigen::ArrayWrapper, 0, Eigen::Stride<0, 0> >, -1, 1, true> > > >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:113:55: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_xv(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:74:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 654 | return internal::first_aligned::alignment),Derived>(m); | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'Eigen::Index Eigen::internal::first_default_aligned(const Eigen::DenseBase&) [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Eigen::Index = long int]': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:243:63: required from 'static Eigen::internal::redux_impl::Scalar Eigen::internal::redux_impl::run(const Evaluator&, const Func&, const XprType&) [with XprType = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; Func = Eigen::internal::scalar_sum_op; Evaluator = Eigen::internal::redux_evaluator, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> > >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:418:56: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::redux(const Func&) const [with BinaryOp = Eigen::internal::scalar_sum_op; Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Redux.h:463:25: required from 'typename Eigen::internal::traits::Scalar Eigen::DenseBase::sum() const [with Derived = Eigen::CwiseBinaryOp, const Eigen::Map >, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true> >; typename Eigen::internal::traits::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:37:51: required from 'static Eigen::internal::dot_nocheck::ResScalar Eigen::internal::dot_nocheck::run(const Eigen::MatrixBase&, const Eigen::MatrixBase&) [with T = Eigen::Map >; U = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; bool NeedToTranspose = false; ResScalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Dot.h:84:58: required from 'typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType Eigen::MatrixBase::dot(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Derived = Eigen::Map >; typename Eigen::ScalarBinaryOpTraits::Scalar, typename Eigen::internal::traits::Scalar>::ReturnType = double; typename Eigen::internal::traits::Scalar = double; typename Eigen::internal::traits::Scalar = double]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:206:64: required from 'static auto glmnetpp::ElnetPointInternalStaticBase::compute_grad(const RType&, const XType&) [with RType = Eigen::Map >; XType = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:118:36: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:123:25: required from 'typename glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::base_t::value_t glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::compute_abs_grad(typename base_t::index_t) const [with ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/gaussian_wls.hpp:75:41: required from 'glmnetpp::ElnetPointInternal::type::wls, ValueType, IndexType, BoolType>::ElnetPointInternal(typename base_t::value_t, typename base_t::value_t, typename base_t::value_t, const XType&, RType&, XVType&, const VType&, bool, const JUType&, const VPType&, const CLType&, typename base_t::index_t, typename base_t::value_t, typename base_t::index_t, AType&, typename base_t::value_t&, GType&, IAType&, IYType&, typename base_t::index_t&, MMType&, typename base_t::index_t&, typename base_t::value_t&, typename base_t::index_t&) [with XType = Eigen::Map >; RType = Eigen::Map >; XVType = Eigen::Map >; VType = Eigen::Map >; JUType = Eigen::Map, 0, Eigen::Stride<0, 0> >; VPType = Eigen::Map >; CLType = Eigen::Map >; AType = Eigen::Map >; GType = Eigen::Map >; IAType = Eigen::Map, 0, Eigen::Stride<0, 0> >; IYType = Eigen::Map, 0, Eigen::Stride<0, 0> >; MMType = Eigen::Map, 0, Eigen::Stride<0, 0> >; ValueType = double; IndexType = int; BoolType = int; typename base_t::value_t = double; base_t = glmnetpp::ElnetPointInternalGaussianWLSBase; typename base_t::index_t = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:93:23: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:654:74: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:45:7: required from 'Eigen::CwiseBinaryOpImpl::CwiseBinaryOpImpl() [with BinaryOp = Eigen::internal::scalar_product_op; Lhs = const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Rhs = const Eigen::Map, 0, Eigen::Stride<0, 0> >]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseBinaryOp.h:111:49: required from 'Eigen::CwiseBinaryOp::CwiseBinaryOp(const Lhs&, const Rhs&, const BinaryOp&) [with BinaryOp = Eigen::internal::scalar_product_op; LhsType = const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; RhsType = const Eigen::Map, 0, Eigen::Stride<0, 0> >; Lhs = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; Rhs = Eigen::Map, 0, Eigen::Stride<0, 0> >]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCwiseBinaryOp.h:689:62: required from 'const typename Eigen::SparseMatrixBase::CwiseProductDenseReturnType::Type Eigen::SparseMatrixBase::cwiseProduct(const Eigen::MatrixBase&) const [with OtherDerived = Eigen::Map, 0, Eigen::Stride<0, 0> >; Derived = Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>; typename CwiseProductDenseReturnType::Type = Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/sp_gaussian_wls.hpp:110:39: [ skipping 2 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:128:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 1071 | PacketAlignment = unpacket_traits::alignment, | ^~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h: In instantiation of 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, 0, Eigen::Stride<0, 0> >, -1, 1, true> >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:41: required from 'struct Eigen::internal::binary_evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:100:8: required from 'struct Eigen::internal::evaluator, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:739:78: required from 'struct Eigen::internal::binary_evaluator, const Eigen::CwiseNullaryOp, const Eigen::Matrix >, const Eigen::CwiseBinaryOp, const Eigen::Block, 0, Eigen::Stride<0, 0> >, -1, 1, true>, const Eigen::Map, 0, Eigen::Stride<0, 0> > > >, Eigen::internal::IndexBased, Eigen::internal::IndexBased, double, double>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:722:8: [ skipping 9 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::ElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::ElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:55:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CoreEvaluators.h:1071:54: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, Eigen::Matrix >, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase, Eigen::Matrix > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:60:7: required from 'class Eigen::CwiseNullaryOp, Eigen::Matrix >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:347:30: required from 'Derived& Eigen::DenseBase::setConstant(const Scalar&) [with Derived = Eigen::Map >; Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/CwiseNullaryOp.h:548:10: required from 'Derived& Eigen::DenseBase::setZero() [with Derived = Eigen::Map >]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseAssign.h:143:18: [ skipping 7 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:43:46: required from 'glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&):::: [with auto:4 = int]' glmnetpp/include/glmnetpp_bits/elnet_point/internal/base.hpp:38:23: required from 'static constexpr void glmnetpp::ElnetPointInternalStaticBase::for_each_with_skip(Iter, Iter, UpdatePolicy, SkipPolicy) [with Iter = glmnetpp::util::counting_iterator; UpdatePolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; SkipPolicy = glmnetpp::ElnetPointCRTPBase::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> > >::fit::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack>(const glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack&)::::; ValueType = double; IndexType = int]' glmnetpp/include/glmnetpp_bits/elnet_point/base.hpp:40:45: required from 'std::pair glmnetpp::ElnetPointCRTPBase::fit(const PointConfigPack&) [with glmnetpp::util::update_type upd = glmnetpp::util::update_type::full; bool do_kkt = true; PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_base.hpp:35:78: required from 'void glmnetpp::ElnetPointGaussianBase::fit(const PointConfigPack&) [with PointConfigPack = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >::PointConfigPack; ElnetPointGaussianDerived = glmnetpp::ElnetPoint::type::wls, glmnetpp::SpElnetPointInternal::type::wls, double, int, int> >]' glmnetpp/include/glmnetpp_bits/elnet_point/gaussian_wls.hpp:43:24: required from 'void glmnetpp::ElnetPoint::type::wls, ElnetPointInternalPolicy>::fit(IntType, IntType&) [with IntType = int; ElnetPointInternalPolicy = glmnetpp::SpElnetPointInternal::type::wls, double, int, int>]' wls_exp.cpp:128:24: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o glmnet.so RcppExports.o coxnet5dpclean.o elnet_exp.o glmnet_init.o internal.o pb.o pb_exp.o wls_exp.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-glmnet/00new/glmnet/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (glmnet) * installing *source* package 'GPfit' ... ** this is package 'GPfit' version '1.0-9' ** package 'GPfit' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (GPfit) * installing *source* package 'irace' ... ** this is package 'irace' version '4.3' ** package 'irace' successfully unpacked and MD5 sums checked ** using staged installation ** libs /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/irace.c -o iracebin/irace.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/whereami.c -o iracebin/whereami.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include iracebin/irace.o iracebin/whereami.o -o iracebin/irace /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/ablation.c -o iracebin/ablation.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include iracebin/ablation.o iracebin/whereami.o -o iracebin/ablation /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dummy/target-runner-dummy.c -o dummy/target-runner-dummy.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include dummy/target-runner-dummy.o -o dummy/target-runner-dummy installing via 'install.libs.R' to /tmp/th798/25909589/R-devel/849/library/00LOCK-irace/00new/irace ** R ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... namespaceImport -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'irace' * removing '/tmp/th798/25909589/R-devel/849/library/irace' * installing *source* package 'laGP' ... ** this is package 'laGP' version '1.5-9' ** package 'laGP' successfully unpacked and MD5 sums checked ** using staged installation ** libs /home/th798/R/R-devel/bin/R CMD SHLIB -o laGP.so *.c using C compiler: 'gcc (Spack GCC) 12.2.0' make[1]: Entering directory '/tmp/th798/25909589/RtmpozDltE/R.INSTALL1fd11a540f8636/laGP/src' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c covar.c -o covar.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c covar_sep.c -o covar_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c davies.c -o davies.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gamma.c -o gamma.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp.c -o gp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp_sep.c -o gp_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ieci.c -o ieci.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c laGP.c -o laGP.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c laGP_sep.c -o laGP_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c linalg.c -o linalg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c order.c -o order.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbetter.c -o rbetter.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rhelp.c -o rhelp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c util.c -o util.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o laGP.so covar.o covar_sep.o davies.o gamma.o gp.o gp_sep.o ieci.o init.o laGP.o laGP_sep.o linalg.o matrix.o order.o rbetter.o rhelp.o util.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -fopenmp make[1]: Leaving directory '/tmp/th798/25909589/RtmpozDltE/R.INSTALL1fd11a540f8636/laGP/src' installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-laGP/00new/laGP/libs ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (laGP) * installing *source* package 'lintr' ... ** this is package 'lintr' version '3.3.0-1' ** package 'lintr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lintr) * installing *source* package 'penalized' ... ** this is package 'penalized' version '0.9-53' ** package 'penalized' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coxfit.cpp -o coxfit.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lasso.cpp -o lasso.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ridge.cpp -o ridge.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o penalized.so RcppExports.o coxfit.o init.o lasso.o ridge.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-penalized/00new/penalized/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (penalized) * installing *source* package 'PMCMRplus' ... ** this is package 'PMCMRplus' version '1.9.12' ** package 'PMCMRplus' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c crwrapf90.c -o crwrapf90.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c dstat.f -o dstat.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c getpval.f -o getpval.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c pava.f -o pava.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c pd.f -o pd.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c util.f -o util.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o PMCMRplus.so crwrapf90.o dstat.o getpval.o init.o pava.o pd.o util.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-PMCMRplus/00new/PMCMRplus/libs ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (PMCMRplus) * installing *source* package 'ranger' ... ** this is package 'ranger' version '0.17.0' ** package 'ranger' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c AAA_check_cpp14.cpp -o AAA_check_cpp14.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Data.cpp -o Data.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c DataSparse.cpp -o DataSparse.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from DataSparse.h:31, from DataSparse.cpp:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Forest.cpp -o Forest.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ForestClassification.cpp -o ForestClassification.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ForestProbability.cpp -o ForestProbability.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ForestRegression.cpp -o ForestRegression.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ForestSurvival.cpp -o ForestSurvival.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from RcppExports.cpp:5: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:336:80: required from 'struct Eigen::internal::evaluator > >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:1505:8: required from 'struct Eigen::internal::evaluator >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseAssign.h:77:20: required from 'void Eigen::internal::assign_sparse_to_sparse(DstXprType&, const SrcXprType&) [with DstXprType = Eigen::SparseMatrix; SrcXprType = Eigen::SparseMatrix]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseAssign.h:132:28: required from 'static void Eigen::internal::Assignment::run(DstXprType&, const SrcXprType&, const Eigen::internal::assign_op&) [with DstXprType = Eigen::SparseMatrix; SrcXprType = Eigen::SparseMatrix; Functor = Eigen::internal::assign_op; typename SrcXprType::Scalar = double; typename DstXprType::Scalar = double]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:890:49: required from 'void Eigen::internal::call_assignment_no_alias(Dst&, const Src&, const Func&) [with Dst = Eigen::SparseMatrix; Src = Eigen::SparseMatrix; Func = assign_op]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/AssignEvaluator.h:917:27: [ skipping 3 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:713:13: required from 'Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>::SparseMatrix(const Eigen::SparseMatrix<_Scalar, _Flags, _StorageIndex>&) [with _Scalar = double; int _Options = 0; _StorageIndex = int]' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenWrap.h:387:24: required from 'Eigen::SparseMatrix Rcpp::traits::Exporter >::get() [with T = double]' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/as.h:89:32: required from 'T Rcpp::internal::as(SEXP, Rcpp::traits::r_type_generic_tag) [with T = Eigen::SparseMatrix; SEXP = SEXPREC*]' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/as.h:152:31: required from 'T Rcpp::as(SEXP) [with T = Eigen::SparseMatrix; SEXP = SEXPREC*]' /tmp/th798/25909589/R-devel/849/library/Rcpp/include/Rcpp/InputParameter.h:46:54: required from 'Rcpp::ReferenceInputParameter::ReferenceInputParameter(SEXP) [with T = Eigen::SparseMatrix; SEXP = SEXPREC*]' RcppExports.cpp:59:94: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Tree.cpp -o Tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeClassification.cpp -o TreeClassification.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeProbability.cpp -o TreeProbability.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeRegression.cpp -o TreeRegression.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeSurvival.cpp -o TreeSurvival.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rangerCpp.cpp -o rangerCpp.o In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:205, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Dense:1, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:28, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigen.h:25, from rangerCpp.cpp:28: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:46:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 46 | typedef eigen_packet_wrapper<__m128i, 0> Packet4i; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:47:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 47 | typedef eigen_packet_wrapper<__m128i, 1> Packet16b; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:49:39: warning: ignoring attributes on template argument '__m128' [-Wignored-attributes] 49 | template<> struct is_arithmetic<__m128> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:50:40: warning: ignoring attributes on template argument '__m128i' [-Wignored-attributes] 50 | template<> struct is_arithmetic<__m128i> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:51:40: warning: ignoring attributes on template argument '__m128d' [-Wignored-attributes] 51 | template<> struct is_arithmetic<__m128d> { enum { value = true }; }; | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:222:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 222 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:228:43: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 228 | template<> struct unpacket_traits { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1124:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 1124 | ptranspose(PacketBlock& kernel) { | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/PacketMath.h:1129:34: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 1129 | ptranspose(PacketBlock& kernel) { | ^ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:174: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet4f' {aka '__m128'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:173:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 173 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet2cf,Packet4f) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:16:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 16 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/Default/ConjHelper.h:29:60: warning: ignoring attributes on template argument 'Eigen::internal::Packet2d' {aka '__m128d'} [-Wignored-attributes] 29 | struct conj_helper { \ | ^ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/arch/SSE/Complex.h:298:1: note: in expansion of macro 'EIGEN_MAKE_CONJ_HELPER_CPLX_REAL' 298 | EIGEN_MAKE_CONJ_HELPER_CPLX_REAL(Packet1cd,Packet2d) | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:165: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:24:46: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(4) float>::half' {aka '__m128'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Core:271: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:27:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h: In instantiation of 'struct Eigen::internal::find_best_packet': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:22:57: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:266:49: required from 'struct Eigen::internal::traits >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:98:47: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:44: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 190 | bool Stop = Size==Dynamic || (Size%unpacket_traits::size)==0 || is_same::half>::value> | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:190:83: warning: ignoring attributes on template argument 'Eigen::internal::unpacket_traits<__vector(2) double>::half' {aka '__m128d'} [-Wignored-attributes] /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/util/XprHelper.h:208:88: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 208 | typedef typename find_best_packet_helper::type>::type type; | ^~~~ /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h: In instantiation of 'class Eigen::DenseCoeffsBase, 0>': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:302:7: required from 'class Eigen::DenseCoeffsBase, 1>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:555:7: required from 'class Eigen::DenseCoeffsBase, 3>' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseBase.h:41:34: required from 'class Eigen::DenseBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/MatrixBase.h:48:34: required from 'class Eigen::MatrixBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/PlainObjectBase.h:98:7: required from 'class Eigen::PlainObjectBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/Matrix.h:178:7: required from 'class Eigen::Matrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:46:50: required from 'class Eigen::QuaternionBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/Quaternion.h:273:7: required from 'class Eigen::Quaternion' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Geometry/arch/Geometry_SIMD.h:102:3: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/Core/DenseCoeffsBase.h:56:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 56 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ In file included from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/SparseCore:37, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/Sparse:26, from /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/RcppEigenForward.h:29: /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h: In instantiation of 'class Eigen::SparseMatrixBase >': /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseCompressedBase.h:36:7: required from 'class Eigen::SparseCompressedBase >' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrix.h:96:7: required from 'class Eigen::SparseMatrix' /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/unsupported/Eigen/src/IterativeSolvers/ConstrainedConjGrad.h:61:25: required from here /tmp/th798/25909589/R-devel/849/library/RcppEigen/include/Eigen/src/SparseCore/SparseMatrixBase.h:47:30: warning: ignoring attributes on template argument 'Eigen::internal::packet_traits::type' {aka '__m128d'} [-Wignored-attributes] 47 | >::type PacketReturnType; | ^~~~~~~~~~~~~~~~ /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utility.cpp -o utility.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -DR_BUILD -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I'/tmp/th798/25909589/R-devel/849/library/RcppEigen/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utilityRcpp.cpp -o utilityRcpp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ranger.so AAA_check_cpp14.o Data.o DataSparse.o Forest.o ForestClassification.o ForestProbability.o ForestRegression.o ForestSurvival.o RcppExports.o Tree.o TreeClassification.o TreeProbability.o TreeRegression.o TreeSurvival.o rangerCpp.o utility.o utilityRcpp.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-ranger/00new/ranger/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ranger) * installing *source* package 'rmarkdown' ... ** this is package 'rmarkdown' version '2.30' ** package 'rmarkdown' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rmarkdown) ERROR: dependency 's2' is not available for package 'sf' Perhaps try a variation of: install.packages('s2') * removing '/tmp/th798/25909589/R-devel/849/library/sf' ERROR: dependency 'ParamHelpers' is not available for package 'smoof' Perhaps try a variation of: install.packages('ParamHelpers') * removing '/tmp/th798/25909589/R-devel/849/library/smoof' ERROR: dependencies 'ParamHelpers', 'parallelMap' are not available for package 'mlr' Perhaps try a variation of: install.packages(c('ParamHelpers', 'parallelMap')) * removing '/tmp/th798/25909589/R-devel/849/library/mlr' * installing *source* package 'hdrcde' ... ** this is package 'hdrcde' version '3.4' ** package 'hdrcde' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c linbin.f -o linbin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o hdrcde.so init.o linbin.o -L/home/th798/R/R-devel/lib -lRlapack -L/home/th798/R/R-devel/lib -lRblas -lgfortran -lm -lquadmath -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-hdrcde/00new/hdrcde/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (hdrcde) * installing *source* package 'doBy' ... ** this is package 'doBy' version '4.7.1' ** package 'doBy' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so': /projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so: undefined symbol: R_nchar Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'doBy' * removing '/tmp/th798/25909589/R-devel/849/library/doBy' ERROR: dependency 'prodlim' is not available for package 'ipred' Perhaps try a variation of: install.packages('prodlim') * removing '/tmp/th798/25909589/R-devel/849/library/ipred' * installing *source* package 'htmlwidgets' ... ** this is package 'htmlwidgets' version '1.6.4' ** package 'htmlwidgets' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (htmlwidgets) * installing *source* package 'httpuv' ... ** this is package 'httpuv' version '1.6.16' ** package 'httpuv' successfully unpacked and MD5 sums checked ** using staged installation ** Using bundled copy of libuv ** PKG_CFLAGS=-Ilibuv/include ** PKG_LIBS=./libuv/.libs/libuv.b ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c callback.cpp -o callback.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c callbackqueue.cpp -o callbackqueue.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c filedatasource-unix.cpp -o filedatasource-unix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c filedatasource-win.cpp -o filedatasource-win.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fs.cpp -o fs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gzipdatasource.cpp -o gzipdatasource.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c http.cpp -o http.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c httprequest.cpp -o httprequest.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c httpresponse.cpp -o httpresponse.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c httpuv.cpp -o httpuv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c md5.c -o md5.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mime.cpp -o mime.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c socket.cpp -o socket.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c staticpath.cpp -o staticpath.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c thread.cpp -o thread.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timegm.cpp -o timegm.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.cpp -o utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uvutil.cpp -o uvutil.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c webapplication.cpp -o webapplication.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c websockets-base.cpp -o websockets-base.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c websockets-hixie76.cpp -o websockets-hixie76.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c websockets-hybi03.cpp -o websockets-hybi03.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c websockets-ietf.cpp -o websockets-ietf.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c websockets.cpp -o websockets.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c winutils.cpp -o winutils.o cp -p -f libuv/m4/lt_obsolete.m4 libuv/m4/lt~obsolete.m4 ignoring -p /usr/bin/cp -f libuv/m4/lt_obsolete.m4 libuv/m4/lt~obsolete.m4 cd libuv; \ if ! command -v automake >/dev/null 2>&1 ; then \ echo "automake not found. Touching files so configure will not try to run automake."; \ touch aclocal.m4; \ touch -r aclocal.m4 configure Makefile.in; \ else \ echo "automake found. Running autoupdate and autogen.sh."; \ autoupdate; \ sh autogen.sh; \ fi; \ chmod +x configure; \ CC="/packages/gcc/12.2.0-nnbserq/bin/gcc" CFLAGS="-I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -fpic -fvisibility=hidden -DNDEBUG" CPPFLAGS="-I/home/th798/.conda/envs/emacs1/include -I/home/th798/include" AR="ar" RANLIB="ranlib" LDFLAGS="-L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64" ./configure "--quiet" automake not found. Touching files so configure will not try to run automake. /usr/bin/cp .//depcomp conftest.dir make --directory=libuv \ HAVE_DTRACE=0 make[1]: Entering directory '/tmp/th798/25909589/RtmpPIbvDD/R.INSTALL20066c78d0ef4c/httpuv/src/libuv' CC src/libuv_la-fs-poll.lo CC src/libuv_la-idna.lo CC src/libuv_la-inet.lo CC src/libuv_la-random.lo CC src/libuv_la-strscpy.lo CC src/libuv_la-threadpool.lo CC src/libuv_la-timer.lo CC src/libuv_la-uv-data-getter-setters.lo CC src/libuv_la-uv-common.lo CC src/libuv_la-version.lo CC src/unix/libuv_la-async.lo CC src/unix/libuv_la-core.lo CC src/unix/libuv_la-dl.lo CC src/unix/libuv_la-fs.lo CC src/unix/libuv_la-getaddrinfo.lo CC src/unix/libuv_la-getnameinfo.lo CC src/unix/libuv_la-loop-watcher.lo CC src/unix/libuv_la-loop.lo CC src/unix/libuv_la-pipe.lo CC src/unix/libuv_la-poll.lo CC src/unix/libuv_la-process.lo CC src/unix/libuv_la-random-devurandom.lo CC src/unix/libuv_la-signal.lo CC src/unix/libuv_la-stream.lo CC src/unix/libuv_la-tcp.lo CC src/unix/libuv_la-thread.lo CC src/unix/libuv_la-tty.lo CC src/unix/libuv_la-udp.lo CC src/unix/libuv_la-linux-core.lo CC src/unix/libuv_la-linux-inotify.lo CC src/unix/libuv_la-linux-syscalls.lo CC src/unix/libuv_la-procfs-exepath.lo CC src/unix/libuv_la-proctitle.lo CC src/unix/libuv_la-random-getrandom.lo CC src/unix/libuv_la-random-sysctl-linux.lo CC src/unix/libuv_la-epoll.lo CCLD libuv.la make[1]: Leaving directory '/tmp/th798/25909589/RtmpPIbvDD/R.INSTALL20066c78d0ef4c/httpuv/src/libuv' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c http-parser/http_parser.c -o http-parser/http_parser.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sha1/sha1.c -o sha1/sha1.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -Ilibuv/include -pthread -I'/tmp/th798/25909589/R-devel/849/library/later/include' -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -DSTRICT_R_HEADERS -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c base64/base64.cpp -o base64/base64.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o httpuv.so RcppExports.o callback.o callbackqueue.o filedatasource-unix.o filedatasource-win.o fs.o gzipdatasource.o http.o httprequest.o httpresponse.o httpuv.o md5.o mime.o socket.o staticpath.o thread.o timegm.o utils.o uvutil.o webapplication.o websockets-base.o websockets-hixie76.o websockets-hybi03.o websockets-ietf.o websockets.o winutils.o ./libuv/.libs/libuv.b ./http-parser/http_parser.o ./sha1/sha1.o ./base64/base64.o -pthread installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-httpuv/00new/httpuv/libs ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (httpuv) ERROR: dependency 'prodlim' is not available for package 'Publish' Perhaps try a variation of: install.packages('prodlim') * removing '/tmp/th798/25909589/R-devel/849/library/Publish' * installing *source* package 'gamm4' ... ** this is package 'gamm4' version '0.2-7' ** package 'gamm4' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (gamm4) * installing *source* package 'RLRsim' ... ** this is package 'RLRsim' version '3.1-9' ** package 'RLRsim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RLRsim.cpp -o RLRsim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I'/tmp/th798/25909589/R-devel/849/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RLRsim.so RLRsim.o RcppExports.o init.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-RLRsim/00new/RLRsim/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RLRsim) * installing *source* package 'clusterSim' ... ** this is package 'clusterSim' version '0.51-5' ** package 'clusterSim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c clusterSim.cpp -o clusterSim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o clusterSim.so clusterSim.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-clusterSim/00new/clusterSim/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (clusterSim) * installing *source* package 'crs' ... ** this is package 'crs' version '0.15-38' ** package 'crs' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RuniqueCombs.c -o RuniqueCombs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bspline.c -o bspline.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsl_bspline.c -o gsl_bspline.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snomadr.cpp -o snomadr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c crs_init.c -o crs_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mgcv.c -o mgcv.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/nomad.cpp -o nomad_src/nomad.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Algo_Parameters.cpp -o nomad_src/Algo_Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Barrier.cpp -o nomad_src/Barrier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache.cpp -o nomad_src/Cache.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_File_Point.cpp -o nomad_src/Cache_File_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_Point.cpp -o nomad_src/Cache_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_Search.cpp -o nomad_src/Cache_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Clock.cpp -o nomad_src/Clock.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Direction.cpp -o nomad_src/Direction.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Directions.cpp -o nomad_src/Directions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Display.cpp -o nomad_src/Display.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Double.cpp -o nomad_src/Double.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Eval_Point.cpp -o nomad_src/Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Evaluator.cpp -o nomad_src/Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Evaluator_Control.cpp -o nomad_src/Evaluator_Control.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Extended_Poll.cpp -o nomad_src/Extended_Poll.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/L_Curve.cpp -o nomad_src/L_Curve.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/LH_Search.cpp -o nomad_src/LH_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Mads.cpp -o nomad_src/Mads.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/OrthogonalMesh.cpp -o nomad_src/OrthogonalMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Model_Sorted_Point.cpp -o nomad_src/Model_Sorted_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Model_Stats.cpp -o nomad_src/Model_Stats.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Multi_Obj_Evaluator.cpp -o nomad_src/Multi_Obj_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/NelderMead_Search.cpp -o nomad_src/NelderMead_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/NelderMead_Simplex_Eval_Point.cpp -o nomad_src/NelderMead_Simplex_Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameters.cpp -o nomad_src/Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameter_Entries.cpp -o nomad_src/Parameter_Entries.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameter_Entry.cpp -o nomad_src/Parameter_Entry.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Pareto_Front.cpp -o nomad_src/Pareto_Front.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Pareto_Point.cpp -o nomad_src/Pareto_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Phase_One_Evaluator.cpp -o nomad_src/Phase_One_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Phase_One_Search.cpp -o nomad_src/Phase_One_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Point.cpp -o nomad_src/Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Priority_Eval_Point.cpp -o nomad_src/Priority_Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model.cpp -o nomad_src/Quad_Model.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model_Evaluator.cpp -o nomad_src/Quad_Model_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model_Search.cpp -o nomad_src/Quad_Model_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Random_Pickup.cpp -o nomad_src/Random_Pickup.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/RNG.cpp -o nomad_src/RNG.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Evaluator.cpp -o nomad_src/Sgtelib_Model_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Search.cpp -o nomad_src/Sgtelib_Model_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Manager.cpp -o nomad_src/Sgtelib_Model_Manager.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Signature.cpp -o nomad_src/Signature.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Slave.cpp -o nomad_src/Slave.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Speculative_Search.cpp -o nomad_src/Speculative_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Stats.cpp -o nomad_src/Stats.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/SMesh.cpp -o nomad_src/SMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/TrendMatrix_Line_Search.cpp -o nomad_src/TrendMatrix_Line_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/GMesh.cpp -o nomad_src/GMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/XMesh.cpp -o nomad_src/XMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/utils.cpp -o nomad_src/utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Variable_Group.cpp -o nomad_src/Variable_Group.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/VNS_Search.cpp -o nomad_src/VNS_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/TrainingSet.cpp -o sgtelib_src/TrainingSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Parameters.cpp -o sgtelib_src/Surrogate_Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_KS.cpp -o sgtelib_src/Surrogate_KS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_RBF.cpp -o sgtelib_src/Surrogate_RBF.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS.cpp -o sgtelib_src/Surrogate_PRS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS_EDGE.cpp -o sgtelib_src/Surrogate_PRS_EDGE.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_LOWESS.cpp -o sgtelib_src/Surrogate_LOWESS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Kriging.cpp -o sgtelib_src/Surrogate_Kriging.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS_CAT.cpp -o sgtelib_src/Surrogate_PRS_CAT.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Ensemble.cpp -o sgtelib_src/Surrogate_Ensemble.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_CN.cpp -o sgtelib_src/Surrogate_CN.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate.cpp -o sgtelib_src/Surrogate.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Matrix.cpp -o sgtelib_src/Matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Kernel.cpp -o sgtelib_src/Kernel.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Utils.cpp -o sgtelib_src/Surrogate_Utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Factory.cpp -o sgtelib_src/Surrogate_Factory.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Tests.cpp -o sgtelib_src/Tests.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/sgtelib_help.cpp -o sgtelib_src/sgtelib_help.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Metrics.cpp -o sgtelib_src/Metrics.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/sgtelib.cpp -o sgtelib_src/sgtelib.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o crs.so RuniqueCombs.o bspline.o gsl_bspline.o snomadr.o crs_init.o mgcv.o ./nomad_src/nomad.o ./nomad_src/Algo_Parameters.o ./nomad_src/Barrier.o ./nomad_src/Cache.o ./nomad_src/Cache_File_Point.o ./nomad_src/Cache_Point.o ./nomad_src/Cache_Search.o ./nomad_src/Clock.o ./nomad_src/Direction.o ./nomad_src/Directions.o ./nomad_src/Display.o ./nomad_src/Double.o ./nomad_src/Eval_Point.o ./nomad_src/Evaluator.o ./nomad_src/Evaluator_Control.o ./nomad_src/Extended_Poll.o ./nomad_src/L_Curve.o ./nomad_src/LH_Search.o ./nomad_src/Mads.o ./nomad_src/OrthogonalMesh.o ./nomad_src/Model_Sorted_Point.o ./nomad_src/Model_Stats.o ./nomad_src/Multi_Obj_Evaluator.o ./nomad_src/NelderMead_Search.o ./nomad_src/NelderMead_Simplex_Eval_Point.o ./nomad_src/Parameters.o ./nomad_src/Parameter_Entries.o ./nomad_src/Parameter_Entry.o ./nomad_src/Pareto_Front.o ./nomad_src/Pareto_Point.o ./nomad_src/Phase_One_Evaluator.o ./nomad_src/Phase_One_Search.o ./nomad_src/Point.o ./nomad_src/Priority_Eval_Point.o ./nomad_src/Quad_Model.o ./nomad_src/Quad_Model_Evaluator.o ./nomad_src/Quad_Model_Search.o ./nomad_src/Random_Pickup.o ./nomad_src/RNG.o ./nomad_src/Sgtelib_Model_Evaluator.o ./nomad_src/Sgtelib_Model_Search.o ./nomad_src/Sgtelib_Model_Manager.o ./nomad_src/Signature.o ./nomad_src/Slave.o ./nomad_src/Speculative_Search.o ./nomad_src/Stats.o ./nomad_src/SMesh.o ./nomad_src/TrendMatrix_Line_Search.o ./nomad_src/GMesh.o ./nomad_src/XMesh.o ./nomad_src/utils.o ./nomad_src/Variable_Group.o ./nomad_src/VNS_Search.o ./sgtelib_src/TrainingSet.o ./sgtelib_src/Surrogate_Parameters.o ./sgtelib_src/Surrogate_KS.o ./sgtelib_src/Surrogate_RBF.o ./sgtelib_src/Surrogate_PRS.o ./sgtelib_src/Surrogate_PRS_EDGE.o ./sgtelib_src/Surrogate_LOWESS.o ./sgtelib_src/Surrogate_Kriging.o ./sgtelib_src/Surrogate_PRS_CAT.o ./sgtelib_src/Surrogate_Ensemble.o ./sgtelib_src/Surrogate_CN.o ./sgtelib_src/Surrogate.o ./sgtelib_src/Matrix.o ./sgtelib_src/Kernel.o ./sgtelib_src/Surrogate_Utils.o ./sgtelib_src/Surrogate_Factory.o ./sgtelib_src/Tests.o ./sgtelib_src/sgtelib_help.o ./sgtelib_src/Metrics.o ./sgtelib_src/sgtelib.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-crs/00new/crs/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (crs) * installing *source* package 'Cubist' ... ** this is package 'Cubist' version '0.5.1' ** package 'Cubist' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c construct.c -o construct.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c contin.c -o contin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discr.c -o discr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c formrules.c -o formrules.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c formtree.c -o formtree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getdata.c -o getdata.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getnames.c -o getnames.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c global.c -o global.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hash.c -o hash.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c implicitatt.c -o implicitatt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c instance.c -o instance.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modelfiles.c -o modelfiles.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict.c -o predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prunetree.c -o prunetree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rcubist.c -o rcubist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c redefine.c -o redefine.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c regress.c -o regress.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rsample.c -o rsample.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rulebasedmodels.c -o rulebasedmodels.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rules.c -o rules.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sample.c -o sample.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sort.c -o sort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stats.c -o stats.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c strbuf.c -o strbuf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c top.c -o top.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c trees.c -o trees.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c update.c -o update.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utility.c -o utility.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xval.c -o xval.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o Cubist.so construct.o contin.o discr.o formrules.o formtree.o getdata.o getnames.o global.o hash.o implicitatt.o instance.o modelfiles.o predict.o prunetree.o rcubist.o redefine.o regress.o rsample.o rulebasedmodels.o rules.o sample.o sort.o stats.o strbuf.o top.o trees.o update.o utility.o xval.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-Cubist/00new/Cubist/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (Cubist) ERROR: dependencies 'mlr', 'ParamHelpers', 'smoof', 'parallelMap' are not available for package 'mlrMBO' Perhaps try a variation of: install.packages(c('mlr', 'ParamHelpers', 'smoof', 'parallelMap')) * removing '/tmp/th798/25909589/R-devel/849/library/mlrMBO' * installing *source* package 'tsfeatures' ... ** this is package 'tsfeatures' version '1.1.1' ** package 'tsfeatures' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (tsfeatures) * installing *source* package 'rainbow' ... ** this is package 'rainbow' version '3.8' ** package 'rainbow' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** demo ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rainbow) ERROR: dependency 'doBy' is not available for package 'pbkrtest' Perhaps try a variation of: install.packages('doBy') * removing '/tmp/th798/25909589/R-devel/849/library/pbkrtest' * installing *source* package 'rgl' ... ** this is package 'rgl' version '1.3.31' ** package 'rgl' successfully unpacked and MD5 sums checked ** using staged installation checking for gcc... /packages/gcc/12.2.0-nnbserq/bin/gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether the compiler supports GNU C... yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gcc accepts -g... yes checking for /packages/gcc/12.2.0-nnbserq/bin/gcc option to enable C11 features... none needed checking how to run the C preprocessor... /packages/gcc/12.2.0-nnbserq/bin/gcc -E checking for gcc... (cached) /packages/gcc/12.2.0-nnbserq/bin/gcc checking whether the compiler supports GNU C... (cached) yes checking whether /packages/gcc/12.2.0-nnbserq/bin/gcc accepts -g... (cached) yes checking for /packages/gcc/12.2.0-nnbserq/bin/gcc option to enable C11 features... (cached) none needed checking for libpng-config... yes configure: using libpng-config configure: using libpng dynamic linkage checking for X... libraries , headers checking for XAllocClassHint... yes checking for GL/gl.h... yes checking for GL/glu.h... no configure: WARNING: missing required header GL/glu.h configure: compiling without OpenGL support configure: creating ./config.status config.status: creating R/noOpenGL.R config.status: creating src/useNULL/Makevars config.status: creating src/Makevars ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ABCLineSet.cpp -o ABCLineSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c BBoxDeco.cpp -o BBoxDeco.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Background.cpp -o Background.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ClipPlane.cpp -o ClipPlane.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Color.cpp -o Color.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Disposable.cpp -o Disposable.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Light.cpp -o Light.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c LineSet.cpp -o LineSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c LineStripSet.cpp -o LineStripSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Material.cpp -o Material.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c NULLgui.cpp -o NULLgui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c PlaneSet.cpp -o PlaneSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c PointSet.cpp -o PointSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c PrimitiveSet.cpp -o PrimitiveSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c R.cpp -o R.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RenderContext.cpp -o RenderContext.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Shape.cpp -o Shape.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SphereMesh.cpp -o SphereMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SphereSet.cpp -o SphereSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SpriteSet.cpp -o SpriteSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Surface.cpp -o Surface.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TextSet.cpp -o TextSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Texture.cpp -o Texture.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Viewpoint.cpp -o Viewpoint.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c api.cpp -o api.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assert.cpp -o assert.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c callbacks.cpp -o callbacks.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c device.cpp -o device.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c devicemanager.cpp -o devicemanager.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c earcut.cpp -o earcut.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fps.cpp -o fps.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ftgl.cpp -o ftgl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c geom.cpp -o geom.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gl.c -o gl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gl2ps.c -o gl2ps.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c glErrors.cpp -o glErrors.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c glgui.cpp -o glgui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gui.cpp -o gui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.cpp -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c par3d.cpp -o par3d.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pixmap.cpp -o pixmap.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c platform.cpp -o platform.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pretty.c -o pretty.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c render.cpp -o render.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rglmath.cpp -o rglmath.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rglview.cpp -o rglview.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c scene.cpp -o scene.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c select.cpp -o select.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subscene.cpp -o subscene.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c win32gui.cpp -o win32gui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c win32lib.cpp -o win32lib.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c x11gui.cpp -o x11gui.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DHAVE_PNG_H -I/home/th798/.conda/envs/emacs1/include/libpng16 -DRGL_NO_OPENGL -DR_NO_REMAP -Iext/earcut -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c x11lib.cpp -o x11lib.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rgl.so ABCLineSet.o BBoxDeco.o Background.o ClipPlane.o Color.o Disposable.o Light.o LineSet.o LineStripSet.o Material.o NULLgui.o PlaneSet.o PointSet.o PrimitiveSet.o R.o RenderContext.o Shape.o SphereMesh.o SphereSet.o SpriteSet.o Surface.o TextSet.o Texture.o Viewpoint.o api.o assert.o callbacks.o device.o devicemanager.o earcut.o fps.o ftgl.o geom.o gl.o gl2ps.o glErrors.o glgui.o gui.o init.o par3d.o pixmap.o platform.o pretty.o render.o rglmath.o rglview.o scene.o select.o subscene.o win32gui.o win32lib.o x11gui.o x11lib.o -L/home/th798/.conda/envs/emacs1/lib -lpng16 installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-rgl/00new/rgl/libs ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rgl) ERROR: dependency 'ipred' is not available for package 'recipes' Perhaps try a variation of: install.packages('ipred') * removing '/tmp/th798/25909589/R-devel/849/library/recipes' * installing *source* package 'htmlTable' ... ** this is package 'htmlTable' version '2.4.3' ** package 'htmlTable' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (htmlTable) * installing *source* package 'shiny' ... ** this is package 'shiny' version '1.12.1' ** package 'shiny' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (shiny) * installing *source* package 'C50' ... ** this is package 'C50' version '0.2.0' ** package 'C50' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c attwinnow.c -o attwinnow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c classify.c -o classify.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c confmat.c -o confmat.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c construct.c -o construct.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c contin.c -o contin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discr.c -o discr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c formrules.c -o formrules.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c formtree.c -o formtree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getdata.c -o getdata.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getnames.c -o getnames.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c global.c -o global.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hash.c -o hash.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hooks.c -o hooks.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c implicitatt.c -o implicitatt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c info.c -o info.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mcost.c -o mcost.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modelfiles.c -o modelfiles.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c p-thresh.c -o p-thresh.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prune.c -o prune.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rc50.c -o rc50.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c redefine.c -o redefine.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rsample.c -o rsample.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rulebasedmodels.c -o rulebasedmodels.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rules.c -o rules.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ruletree.c -o ruletree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c siftrules.c -o siftrules.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sort.c -o sort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c strbuf.c -o strbuf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c top.c -o top.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c trees.c -o trees.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c update.c -o update.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utility.c -o utility.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c xval.c -o xval.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o C50.so attwinnow.o classify.o confmat.o construct.o contin.o discr.o formrules.o formtree.o getdata.o getnames.o global.o hash.o hooks.o implicitatt.o info.o mcost.o modelfiles.o p-thresh.o prune.o rc50.o redefine.o rsample.o rulebasedmodels.o rules.o ruletree.o siftrules.o sort.o strbuf.o subset.o top.o trees.o update.o utility.o xval.o installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-C50/00new/C50/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (C50) * installing *source* package 'fds' ... ** this is package 'fds' version '1.8' ** package 'fds' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (fds) ERROR: dependency 'pbkrtest' is not available for package 'car' Perhaps try a variation of: install.packages('pbkrtest') * removing '/tmp/th798/25909589/R-devel/849/library/car' * installing *source* package 'miniUI' ... ** this is package 'miniUI' version '0.1.2' ** package 'miniUI' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (miniUI) ERROR: dependency 'rlist' is not available for package 'ConsRank' Perhaps try a variation of: install.packages('rlist') * removing '/tmp/th798/25909589/R-devel/849/library/ConsRank' ERROR: dependencies 'ModelMetrics', 'recipes' are not available for package 'caret' Perhaps try a variation of: install.packages(c('ModelMetrics', 'recipes')) * removing '/tmp/th798/25909589/R-devel/849/library/caret' * installing *source* package 'Hmisc' ... ** this is package 'Hmisc' version '5.2-4' ** package 'Hmisc' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Hmisc.c -o Hmisc.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cidxcn.f90 -o cidxcn.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cidxcp.f90 -o cidxcp.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cutgn.f90 -o cutgn.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c hlqest.f90 -o hlqest.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c hoeffd.f90 -o hoeffd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c jacklins.f90 -o jacklins.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c largrec.f -o largrec.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mChoice.c -o mChoice.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c maxempr.f90 -o maxempr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nstr.c -o nstr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ranksort.c -o ranksort.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rcorr.f90 -o rcorr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c string_box.c -o string_box.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c wclosest.f90 -o wclosest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o Hmisc.so Hmisc.o cidxcn.o cidxcp.o cutgn.o hlqest.o hoeffd.o init.o jacklins.o largrec.o mChoice.o maxempr.o nstr.o ranksort.o rcorr.o string_box.o wclosest.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-Hmisc/00new/Hmisc/libs ** R ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'Hmisc' * removing '/tmp/th798/25909589/R-devel/849/library/Hmisc' * installing *source* package 'mldr' ... ** this is package 'mldr' version '0.4.3' ** package 'mldr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mldr) * installing *source* package 'fda' ... ** this is package 'fda' version '6.3.0' ** package 'fda' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (fda) ERROR: dependency 'car' is not available for package 'rstatix' Perhaps try a variation of: install.packages('car') * removing '/tmp/th798/25909589/R-devel/849/library/rstatix' * installing *source* package 'questionr' ... ** this is package 'questionr' version '0.8.1' ** package 'questionr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading Error in dyn.load(file, DLLpath = DLLpath, ...) : unable to load shared object '/projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so': /projects/genomic-ml/R/R-devel/library/fansi/libs/fansi.so: undefined symbol: R_nchar Calls: ... asNamespace -> loadNamespace -> library.dynam -> dyn.load Execution halted ERROR: lazy loading failed for package 'questionr' * removing '/tmp/th798/25909589/R-devel/849/library/questionr' ERROR: dependency 'Hmisc' is not available for package 'rms' Perhaps try a variation of: install.packages('Hmisc') * removing '/tmp/th798/25909589/R-devel/849/library/rms' ERROR: dependencies 'caret', 'ConsRank' are not available for package 'adabag' Perhaps try a variation of: install.packages(c('caret', 'ConsRank')) * removing '/tmp/th798/25909589/R-devel/849/library/adabag' ERROR: dependencies 'prodlim', 'Publish', 'rms' are not available for package 'riskRegression' Perhaps try a variation of: install.packages(c('prodlim', 'Publish', 'rms')) * removing '/tmp/th798/25909589/R-devel/849/library/riskRegression' * installing *source* package 'fda.usc' ... ** this is package 'fda.usc' version '2.2.0' ** package 'fda.usc' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c Adot.f90 -o Adot.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c PCvM_statistic.f90 -o PCvM_statistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fda.usc_init.c -o fda.usc_init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rp_stat.f90 -o rp_stat.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o fda.usc.so Adot.o PCvM_statistic.o fda.usc_init.o rp_stat.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-fda.usc/00new/fda.usc/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (fda.usc) ERROR: dependency 'rstatix' is not available for package 'ggpubr' Perhaps try a variation of: install.packages('rstatix') * removing '/tmp/th798/25909589/R-devel/849/library/ggpubr' ERROR: dependency 'questionr' is not available for package 'klaR' Perhaps try a variation of: install.packages('questionr') * removing '/tmp/th798/25909589/R-devel/849/library/klaR' * installing *source* package 'refund' ... ** this is package 'refund' version '0.1-38' ** package 'refund' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (refund) ERROR: dependency 'rms' is not available for package 'survAUC' Perhaps try a variation of: install.packages('rms') * removing '/tmp/th798/25909589/R-devel/849/library/survAUC' ERROR: dependencies 'prodlim', 'rms', 'riskRegression' are not available for package 'pec' Perhaps try a variation of: install.packages(c('prodlim', 'rms', 'riskRegression')) * removing '/tmp/th798/25909589/R-devel/849/library/pec' The downloaded source packages are in '/tmp/th798/25909589/RtmpTTGHpa/downloaded_packages' There were 31 warnings (use warnings() to see them) > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 1853.117 147.890 2563.727 > print(Sys.time()) [1] "2025-12-15 01:13:19 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-12-15 01:13:19 MST" Installing package into '/tmp/th798/25909589/R-devel/849/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.8' ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-12-15 01:13:39 MST" * using log directory '/tmp/th798/25909589/R-devel/849/mlr.Rcheck' * using R Under development (unstable) (2025-12-14 r89168) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr/DESCRIPTION' ... OK * this is package 'mlr' version '2.19.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Packages required but not available: 'ParamHelpers', 'parallelMap' Packages suggested but not available for checking: 'adabag', 'caret', 'ggpubr', 'Hmisc', 'irace', 'klaR', 'mlrMBO', 'pec', 'Rmpi', 'sf', 'smoof', 'survAUC' See section 'The DESCRIPTION file' in the 'Writing R Extensions' manual. * DONE Status: 1 ERROR See '/tmp/th798/25909589/R-devel/849/mlr.Rcheck/00check.log' for details. [1] "2025-12-15 01:13:44 MST" [1] "2025-12-15 01:13:44 MST" Installing package into '/tmp/th798/25909589/R-devel/849/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.99' ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollapply.c -o frollapply.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mergelist.c -o mergelist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shellsort.c -o shellsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-devel/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o frollapply.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o mergelist.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shellsort.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/25909589/R-devel/849/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-12-15 01:14:06 MST" * using log directory '/tmp/th798/25909589/R-devel/849/mlr.Rcheck' * using R Under development (unstable) (2025-12-14 r89168) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr/DESCRIPTION' ... OK * this is package 'mlr' version '2.19.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... ERROR Packages required but not available: 'ParamHelpers', 'parallelMap' Packages suggested but not available for checking: 'adabag', 'caret', 'ggpubr', 'Hmisc', 'irace', 'klaR', 'mlrMBO', 'pec', 'Rmpi', 'sf', 'smoof', 'survAUC' See section 'The DESCRIPTION file' in the 'Writing R Extensions' manual. * DONE Status: 1 ERROR See '/tmp/th798/25909589/R-devel/849/mlr.Rcheck/00check.log' for details. [1] "2025-12-15 01:14:12 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) Error: package or namespace load failed for 'data.table' in dyn.load(file, DLLpath = DLLpath, ...): unable to load shared object '/projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so': /projects/genomic-ml/R/R-devel/library/data.table/libs/data_table.so: undefined symbol: Rf_GetOption Execution halted WARNING: ignoring environment value of R_HOME R version 4.5.2 (2025-10-31) -- "[Not] Part in a Rumble" Copyright (C) 2025 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu 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. 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. > cargs <- commandArgs(trailingOnly=TRUE) > if(length(cargs)==0){ + ## before running interactively, make sure to start emacs/R with + ## environment defined in /scratch/...check_one.sh, particularly + ## R_LIBS_USER=/tmp/... otherwise we get error when installing + ## data.table. + base <- "/scratch/th798/data.table-revdeps/*" + cargs <- c( + Sys.glob(file.path(base,"deps.csv")), + "349", + Sys.glob(file.path(base, "data.table_release_*tar.gz")), + Sys.glob(file.path(base, "data.table_master_*tar.gz")) + ) + } > names(cargs) <- c("deps.csv", "task.str", "release", "master") > dput(cargs) c(deps.csv = "/scratch/th798/data.table-revdeps/2025-12-15/deps.csv", task.str = "849", release = "/scratch/th798/data.table-revdeps/2025-12-15/data.table_release_1.17.8.tar.gz", master = "/scratch/th798/data.table-revdeps/2025-12-15/data.table_master_1.17.99.4f8695fa560beaa7d7d8034ee41fa6146e2998b5.tar.gz" ) > (task.dir <- dirname(.libPaths()[1]))#should be /tmp/th798/slurmid/R-vers [1] "/tmp/th798/25909589/R-release/849" > if(requireNamespace("R.cache"))R.cache::getCachePath() Loading required namespace: R.cache [1] "/tmp/th798/25909589/R-release/849/R.cache" > task.id <- as.integer(cargs[["task.str"]]) > deps.df <- read.csv(cargs[["deps.csv"]]) > (rev.dep <- deps.df$Package[task.id]) [1] "mlr" > job.dir <- file.path(dirname(cargs[["deps.csv"]]), "tasks", task.id) > setwd(task.dir) > .libPaths() [1] "/tmp/th798/25909589/R-release/849/library" [2] "/projects/genomic-ml/R/R-release/library" > options(repos=c(#this should be in ~/.Rprofile too. + CRAN="http://cloud.r-project.org")) > print(Sys.time()) [1] "2025-12-15 01:14:17 MST" > install.time <- system.time({ + install.packages(rev.dep, dep=TRUE) + }) Installing package into '/tmp/th798/25909589/R-release/849/library' (as 'lib' is unspecified) also installing the dependencies 'lava', 'cmprsk', 'mets', 'prodlim', 'Publish', 'gamboostLSS', 'matrixStats', 'spacefillr', 'backports', 'xmlparsedata', 'riskRegression', 'timereg', 'gamm4', 'RLRsim', 'grpreg', 'pbs', 'entropy', 'fdrtool', 'RcppRoll', 'ParamHelpers', 'parallelMap', 'brnn', 'bst', 'care', 'clusterSim', 'cmaes', 'crs', 'deepnet', 'DiceKriging', 'emoa', 'evtree', 'fda.usc', 'FDboost', 'frbs', 'FSelectorRcpp', 'GPfit', 'h2o', 'irace', 'laGP', 'lintr', 'mco', 'mldr', 'mlrMBO', 'mRMRe', 'neuralnet', 'party', 'pec', 'refund', 'rFerns', 'rgenoud', 'rotationForest', 'RRF', 'rucrdtw', 'sda', 'smoof', 'sparseLDA', 'stepPlr', 'survAUC', 'tgp', 'tsfeatures', 'wavelets' trying URL 'http://cloud.r-project.org/src/contrib/lava_1.8.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/cmprsk_2.2-12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mets_1.3.8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/prodlim_2025.04.28.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/Publish_2025.07.24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/gamboostLSS_2.1-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/matrixStats_1.5.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/spacefillr_0.4.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/backports_1.5.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/xmlparsedata_1.0.5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/riskRegression_2025.09.17.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/timereg_2.0.7.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/gamm4_0.2-7.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RLRsim_3.1-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/grpreg_3.5.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pbs_1.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/entropy_1.3.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/fdrtool_1.2.18.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RcppRoll_0.3.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/ParamHelpers_1.14.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/parallelMap_1.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/brnn_0.9.4.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/bst_0.3-24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/care_1.1.11.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/clusterSim_0.51-5.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/cmaes_1.0-12.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/crs_0.15-38.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/deepnet_0.2.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/DiceKriging_1.6.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/emoa_0.5-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/evtree_1.0-8.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/fda.usc_2.2.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/FDboost_1.1-3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/frbs_3.2-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/FSelectorRcpp_0.3.13.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/GPfit_1.0-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/h2o_3.44.0.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/irace_4.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/laGP_1.5-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/lintr_3.3.0-1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mco_1.17.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mldr_0.4.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlrMBO_1.1.5.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mRMRe_2.1.2.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/neuralnet_1.44.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/party_1.3-18.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/pec_2025.06.24.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/refund_0.1-38.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rFerns_5.0.0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rgenoud_5.9-0.11.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rotationForest_0.1.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/RRF_1.9.4.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/rucrdtw_0.1.6.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/sda_1.3.9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/smoof_1.6.0.3.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/sparseLDA_0.1-9.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/stepPlr_0.93.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/survAUC_1.4-0.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/tgp_2.4-23.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/tsfeatures_1.1.1.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/wavelets_0.3-0.2.tar.gz' trying URL 'http://cloud.r-project.org/src/contrib/mlr_2.19.3.tar.gz' * installing *source* package 'lava' ... ** this is package 'lava' version '1.8.2' ** package 'lava' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lava) * installing *source* package 'cmprsk' ... ** this is package 'cmprsk' version '2.2-12' ** package 'cmprsk' successfully unpacked and MD5 sums checked ** using staged installation ** libs using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cincsub.f -o cincsub.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c crr.f -o crr.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c crstm.f -o crstm.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c tpoi.f -o tpoi.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o cmprsk.so cincsub.o crr.o crstm.o tpoi.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-cmprsk/00new/cmprsk/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (cmprsk) * installing *source* package 'gamboostLSS' ... ** this is package 'gamboostLSS' version '2.1-0' ** package 'gamboostLSS' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (gamboostLSS) * installing *source* package 'matrixStats' ... ** this is package 'matrixStats' version '1.5.0' ** package 'matrixStats' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c 000.init.c -o 000.init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c allocMatrix2.c -o allocMatrix2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c anyMissing.c -o anyMissing.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c binCounts.c -o binCounts.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c binMeans.c -o binMeans.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c colCounts.c -o colCounts.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c colOrderStats.c -o colOrderStats.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c colRanges.c -o colRanges.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c diff2.c -o diff2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c indexByRow.c -o indexByRow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c logSumExp.c -o logSumExp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mean2.c -o mean2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c naming.c -o naming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c productExpSumLog.c -o productExpSumLog.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c psortKM.c -o psortKM.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCounts.c -o rowCounts.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCummaxs.c -o rowCummaxs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCummins.c -o rowCummins.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCumprods.c -o rowCumprods.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCumsums.c -o rowCumsums.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowDiffs.c -o rowDiffs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowLogSumExp.c -o rowLogSumExp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowMads.c -o rowMads.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowMeans2.c -o rowMeans2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowMedians.c -o rowMedians.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowOrderStats.c -o rowOrderStats.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowRanges.c -o rowRanges.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowRanksWithTies.c -o rowRanksWithTies.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowSums2.c -o rowSums2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowVars.c -o rowVars.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c signTabulate.c -o signTabulate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sum2.c -o sum2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c validateIndices.c -o validateIndices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c weightedMean.c -o weightedMean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c weightedMedian.c -o weightedMedian.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c x_OP_y.c -o x_OP_y.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o matrixStats.so 000.init.o allocMatrix2.o anyMissing.o binCounts.o binMeans.o colCounts.o colOrderStats.o colRanges.o diff2.o indexByRow.o logSumExp.o mean2.o naming.o productExpSumLog.o psortKM.o rowCounts.o rowCummaxs.o rowCummins.o rowCumprods.o rowCumsums.o rowDiffs.o rowLogSumExp.o rowMads.o rowMeans2.o rowMedians.o rowOrderStats.o rowRanges.o rowRanksWithTies.o rowSums2.o rowVars.o signTabulate.o sum2.o validateIndices.o weightedMean.o weightedMedian.o x_OP_y.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-matrixStats/00new/matrixStats/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (matrixStats) * installing *source* package 'spacefillr' ... ** this is package 'spacefillr' version '0.4.0' ** package 'spacefillr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' using C++17 /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c generate_point_functions.cpp -o generate_point_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o spacefillr.so RcppExports.o generate_point_functions.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-spacefillr/00new/spacefillr/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (spacefillr) * installing *source* package 'backports' ... ** this is package 'backports' version '1.5.0' ** package 'backports' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dotsElt.c -o dotsElt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dotsLength.c -o dotsLength.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dotsNames.c -o dotsNames.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o backports.so dotsElt.o dotsLength.o dotsNames.o init.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-backports/00new/backports/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (backports) * installing *source* package 'xmlparsedata' ... ** this is package 'xmlparsedata' version '1.0.5' ** package 'xmlparsedata' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (xmlparsedata) * installing *source* package 'gamm4' ... ** this is package 'gamm4' version '0.2-7' ** package 'gamm4' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading Warning message: In check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** testing if installed package can be loaded from final location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** testing if installed package keeps a record of temporary installation path * DONE (gamm4) * installing *source* package 'RLRsim' ... ** this is package 'RLRsim' version '3.1-9' ** package 'RLRsim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RLRsim.cpp -o RLRsim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RLRsim.so RLRsim.o RcppExports.o init.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-RLRsim/00new/RLRsim/libs ** R ** inst ** byte-compile and prepare package for lazy loading Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** testing if installed package keeps a record of temporary installation path * DONE (RLRsim) * installing *source* package 'grpreg' ... ** this is package 'grpreg' version '3.5.0' ** package 'grpreg' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_cox.c -o gdfit_cox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_gaussian.c -o gdfit_gaussian.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gdfit_glm.c -o gdfit_glm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c grpreg_init.c -o grpreg_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_cox.c -o lcdfit_cox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_gaussian.c -o lcdfit_gaussian.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lcdfit_glm.c -o lcdfit_glm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c maxprod.c -o maxprod.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c standardize.c -o standardize.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o grpreg.so gdfit_cox.o gdfit_gaussian.o gdfit_glm.o grpreg_init.o lcdfit_cox.o lcdfit_gaussian.o lcdfit_glm.o maxprod.o standardize.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-grpreg/00new/grpreg/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (grpreg) * installing *source* package 'pbs' ... ** this is package 'pbs' version '1.1' ** package 'pbs' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pbs) * installing *source* package 'entropy' ... ** this is package 'entropy' version '1.3.2' ** package 'entropy' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (entropy) * installing *source* package 'fdrtool' ... ** this is package 'fdrtool' version '1.2.18' ** package 'fdrtool' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fdrtool_init.c -o fdrtool_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c isomean.c -o isomean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o fdrtool.so fdrtool_init.o isomean.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-fdrtool/00new/fdrtool/libs ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (fdrtool) * installing *source* package 'RcppRoll' ... ** this is package 'RcppRoll' version '0.3.1' ** package 'RcppRoll' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppRoll.cpp -o RcppRoll.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RcppRoll.so RcppExports.o RcppRoll.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-RcppRoll/00new/RcppRoll/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RcppRoll) * installing *source* package 'parallelMap' ... ** this is package 'parallelMap' version '1.5.1' ** package 'parallelMap' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (parallelMap) * installing *source* package 'brnn' ... ** this is package 'brnn' version '0.9.4' ** package 'brnn' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Lanczos.c -o Lanczos.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c util.c -o util.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I. -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c unix/util_unix.c -o unix/util_unix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o brnn.so Lanczos.o util.o init.o unix/util_unix.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath -fopenmp installing to /tmp/th798/25909589/R-release/849/library/00LOCK-brnn/00new/brnn/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (brnn) * installing *source* package 'bst' ... ** this is package 'bst' version '0.3-24' ** package 'bst' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (bst) * installing *source* package 'care' ... ** this is package 'care' version '1.1.11' ** package 'care' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (care) * installing *source* package 'clusterSim' ... ** this is package 'clusterSim' version '0.51-5' ** package 'clusterSim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c clusterSim.cpp -o clusterSim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o clusterSim.so clusterSim.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-clusterSim/00new/clusterSim/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (clusterSim) * installing *source* package 'cmaes' ... ** this is package 'cmaes' version '1.0-12' ** package 'cmaes' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (cmaes) * installing *source* package 'crs' ... ** this is package 'crs' version '0.15-38' ** package 'crs' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RuniqueCombs.c -o RuniqueCombs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bspline.c -o bspline.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsl_bspline.c -o gsl_bspline.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snomadr.cpp -o snomadr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c crs_init.c -o crs_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mgcv.c -o mgcv.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/nomad.cpp -o nomad_src/nomad.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Algo_Parameters.cpp -o nomad_src/Algo_Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Barrier.cpp -o nomad_src/Barrier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache.cpp -o nomad_src/Cache.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_File_Point.cpp -o nomad_src/Cache_File_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_Point.cpp -o nomad_src/Cache_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Cache_Search.cpp -o nomad_src/Cache_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Clock.cpp -o nomad_src/Clock.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Direction.cpp -o nomad_src/Direction.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Directions.cpp -o nomad_src/Directions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Display.cpp -o nomad_src/Display.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Double.cpp -o nomad_src/Double.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Eval_Point.cpp -o nomad_src/Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Evaluator.cpp -o nomad_src/Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Evaluator_Control.cpp -o nomad_src/Evaluator_Control.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Extended_Poll.cpp -o nomad_src/Extended_Poll.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/L_Curve.cpp -o nomad_src/L_Curve.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/LH_Search.cpp -o nomad_src/LH_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Mads.cpp -o nomad_src/Mads.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/OrthogonalMesh.cpp -o nomad_src/OrthogonalMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Model_Sorted_Point.cpp -o nomad_src/Model_Sorted_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Model_Stats.cpp -o nomad_src/Model_Stats.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Multi_Obj_Evaluator.cpp -o nomad_src/Multi_Obj_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/NelderMead_Search.cpp -o nomad_src/NelderMead_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/NelderMead_Simplex_Eval_Point.cpp -o nomad_src/NelderMead_Simplex_Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameters.cpp -o nomad_src/Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameter_Entries.cpp -o nomad_src/Parameter_Entries.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Parameter_Entry.cpp -o nomad_src/Parameter_Entry.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Pareto_Front.cpp -o nomad_src/Pareto_Front.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Pareto_Point.cpp -o nomad_src/Pareto_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Phase_One_Evaluator.cpp -o nomad_src/Phase_One_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Phase_One_Search.cpp -o nomad_src/Phase_One_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Point.cpp -o nomad_src/Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Priority_Eval_Point.cpp -o nomad_src/Priority_Eval_Point.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model.cpp -o nomad_src/Quad_Model.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model_Evaluator.cpp -o nomad_src/Quad_Model_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Quad_Model_Search.cpp -o nomad_src/Quad_Model_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Random_Pickup.cpp -o nomad_src/Random_Pickup.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/RNG.cpp -o nomad_src/RNG.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Evaluator.cpp -o nomad_src/Sgtelib_Model_Evaluator.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Search.cpp -o nomad_src/Sgtelib_Model_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Sgtelib_Model_Manager.cpp -o nomad_src/Sgtelib_Model_Manager.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Signature.cpp -o nomad_src/Signature.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Slave.cpp -o nomad_src/Slave.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Speculative_Search.cpp -o nomad_src/Speculative_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Stats.cpp -o nomad_src/Stats.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/SMesh.cpp -o nomad_src/SMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/TrendMatrix_Line_Search.cpp -o nomad_src/TrendMatrix_Line_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/GMesh.cpp -o nomad_src/GMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/XMesh.cpp -o nomad_src/XMesh.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/utils.cpp -o nomad_src/utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/Variable_Group.cpp -o nomad_src/Variable_Group.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nomad_src/VNS_Search.cpp -o nomad_src/VNS_Search.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/TrainingSet.cpp -o sgtelib_src/TrainingSet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Parameters.cpp -o sgtelib_src/Surrogate_Parameters.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_KS.cpp -o sgtelib_src/Surrogate_KS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_RBF.cpp -o sgtelib_src/Surrogate_RBF.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS.cpp -o sgtelib_src/Surrogate_PRS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS_EDGE.cpp -o sgtelib_src/Surrogate_PRS_EDGE.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_LOWESS.cpp -o sgtelib_src/Surrogate_LOWESS.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Kriging.cpp -o sgtelib_src/Surrogate_Kriging.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_PRS_CAT.cpp -o sgtelib_src/Surrogate_PRS_CAT.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Ensemble.cpp -o sgtelib_src/Surrogate_Ensemble.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_CN.cpp -o sgtelib_src/Surrogate_CN.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate.cpp -o sgtelib_src/Surrogate.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Matrix.cpp -o sgtelib_src/Matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Kernel.cpp -o sgtelib_src/Kernel.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Utils.cpp -o sgtelib_src/Surrogate_Utils.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Surrogate_Factory.cpp -o sgtelib_src/Surrogate_Factory.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Tests.cpp -o sgtelib_src/Tests.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/sgtelib_help.cpp -o sgtelib_src/sgtelib_help.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/Metrics.cpp -o sgtelib_src/Metrics.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I./nomad_src -I./sgtelib_src -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sgtelib_src/sgtelib.cpp -o sgtelib_src/sgtelib.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o crs.so RuniqueCombs.o bspline.o gsl_bspline.o snomadr.o crs_init.o mgcv.o ./nomad_src/nomad.o ./nomad_src/Algo_Parameters.o ./nomad_src/Barrier.o ./nomad_src/Cache.o ./nomad_src/Cache_File_Point.o ./nomad_src/Cache_Point.o ./nomad_src/Cache_Search.o ./nomad_src/Clock.o ./nomad_src/Direction.o ./nomad_src/Directions.o ./nomad_src/Display.o ./nomad_src/Double.o ./nomad_src/Eval_Point.o ./nomad_src/Evaluator.o ./nomad_src/Evaluator_Control.o ./nomad_src/Extended_Poll.o ./nomad_src/L_Curve.o ./nomad_src/LH_Search.o ./nomad_src/Mads.o ./nomad_src/OrthogonalMesh.o ./nomad_src/Model_Sorted_Point.o ./nomad_src/Model_Stats.o ./nomad_src/Multi_Obj_Evaluator.o ./nomad_src/NelderMead_Search.o ./nomad_src/NelderMead_Simplex_Eval_Point.o ./nomad_src/Parameters.o ./nomad_src/Parameter_Entries.o ./nomad_src/Parameter_Entry.o ./nomad_src/Pareto_Front.o ./nomad_src/Pareto_Point.o ./nomad_src/Phase_One_Evaluator.o ./nomad_src/Phase_One_Search.o ./nomad_src/Point.o ./nomad_src/Priority_Eval_Point.o ./nomad_src/Quad_Model.o ./nomad_src/Quad_Model_Evaluator.o ./nomad_src/Quad_Model_Search.o ./nomad_src/Random_Pickup.o ./nomad_src/RNG.o ./nomad_src/Sgtelib_Model_Evaluator.o ./nomad_src/Sgtelib_Model_Search.o ./nomad_src/Sgtelib_Model_Manager.o ./nomad_src/Signature.o ./nomad_src/Slave.o ./nomad_src/Speculative_Search.o ./nomad_src/Stats.o ./nomad_src/SMesh.o ./nomad_src/TrendMatrix_Line_Search.o ./nomad_src/GMesh.o ./nomad_src/XMesh.o ./nomad_src/utils.o ./nomad_src/Variable_Group.o ./nomad_src/VNS_Search.o ./sgtelib_src/TrainingSet.o ./sgtelib_src/Surrogate_Parameters.o ./sgtelib_src/Surrogate_KS.o ./sgtelib_src/Surrogate_RBF.o ./sgtelib_src/Surrogate_PRS.o ./sgtelib_src/Surrogate_PRS_EDGE.o ./sgtelib_src/Surrogate_LOWESS.o ./sgtelib_src/Surrogate_Kriging.o ./sgtelib_src/Surrogate_PRS_CAT.o ./sgtelib_src/Surrogate_Ensemble.o ./sgtelib_src/Surrogate_CN.o ./sgtelib_src/Surrogate.o ./sgtelib_src/Matrix.o ./sgtelib_src/Kernel.o ./sgtelib_src/Surrogate_Utils.o ./sgtelib_src/Surrogate_Factory.o ./sgtelib_src/Tests.o ./sgtelib_src/sgtelib_help.o ./sgtelib_src/Metrics.o ./sgtelib_src/sgtelib.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-crs/00new/crs/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (crs) * installing *source* package 'deepnet' ... ** this is package 'deepnet' version '0.2.1' ** package 'deepnet' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (deepnet) * installing *source* package 'DiceKriging' ... ** this is package 'DiceKriging' version '1.6.1' ** package 'DiceKriging' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c CovFuns.c -o CovFuns.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Scaling.c -o Scaling.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o DiceKriging.so CovFuns.o Scaling.o init.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-DiceKriging/00new/DiceKriging/libs ** R ** inst ** byte-compile and prepare package for lazy loading Note: ... may be used in an incorrect context ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (DiceKriging) * installing *source* package 'emoa' ... ** this is package 'emoa' version '0.5-3' ** package 'emoa' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c avl.c -o avl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cec2009.c -o cec2009.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c crowding_distance.c -o crowding_distance.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dominance.c -o dominance.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c emoa.c -o emoa.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eps_ind.c -o eps_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c front_edge.c -o front_edge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv.c -o hv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hypervolume.c -o hypervolume.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c poly_mutation.c -o poly_mutation.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c r_ind.c -o r_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sb_crossover.c -o sb_crossover.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sympart.c -o sympart.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utilities.c -o utilities.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o emoa.so avl.o cec2009.o crowding_distance.o dominance.o emoa.o eps_ind.o front_edge.o hv.o hypervolume.o poly_mutation.o r_ind.o sb_crossover.o sympart.o utilities.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-emoa/00new/emoa/libs ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (emoa) * installing *source* package 'evtree' ... ** this is package 'evtree' version '1.0-8' ** package 'evtree' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c container.cpp -o container.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c node.cpp -o node.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tree.cpp -o tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c variable.cpp -o variable.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o evtree.so container.o node.o tree.o variable.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-evtree/00new/evtree/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (evtree) * installing *source* package 'fda.usc' ... ** this is package 'fda.usc' version '2.2.0' ** package 'fda.usc' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c Adot.f90 -o Adot.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c PCvM_statistic.f90 -o PCvM_statistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fda.usc_init.c -o fda.usc_init.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rp_stat.f90 -o rp_stat.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o fda.usc.so Adot.o PCvM_statistic.o fda.usc_init.o rp_stat.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-fda.usc/00new/fda.usc/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (fda.usc) * installing *source* package 'frbs' ... ** this is package 'frbs' version '3.2-0' ** package 'frbs' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (frbs) * installing *source* package 'FSelectorRcpp' ... ** this is package 'FSelectorRcpp' version '0.3.13' ** package 'FSelectorRcpp' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cutOff.cpp -o cutOff.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discretize.cpp -o discretize.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c discretizeControl.cpp -o discretizeControl.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c information_gain.cpp -o information_gain.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c support.cpp -o support.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c test-cpp.cpp -o test-cpp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/BH/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/testthat/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -I../inst/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c test-runner.cpp -o test-runner.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o FSelectorRcpp.so RcppExports.o cutOff.o discretize.o discretizeControl.o information_gain.o init.o support.o test-cpp.o test-runner.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-FSelectorRcpp/00new/FSelectorRcpp/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (FSelectorRcpp) * installing *source* package 'GPfit' ... ** this is package 'GPfit' version '1.0-9' ** package 'GPfit' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (GPfit) * installing *source* package 'h2o' ... ** this is package 'h2o' version '3.44.0.3' ** package 'h2o' successfully unpacked and MD5 sums checked ** using staged installation ** R ** demo ** inst ** byte-compile and prepare package for lazy loading Performing one-time download of h2o.jar from https://s3.amazonaws.com/h2o-release/h2o/rel-3.44.0/3/Rjar/h2o.jar (This could take a few minutes, please be patient...) ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (h2o) * installing *source* package 'mco' ... ** this is package 'mco' version '1.17' ** package 'mco' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c avl.c -o avl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eps_ind.c -o eps_ind.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv.c -o hv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv_interface.c -o hv_interface.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mco.c -o mco.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -DVARIANT=4 -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nsga2.c -o nsga2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mco.so avl.o eps_ind.o hv.o hv_interface.o mco.o nsga2.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-mco/00new/mco/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mco) * installing *source* package 'mldr' ... ** this is package 'mldr' version '0.4.3' ** package 'mldr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mldr) * installing *source* package 'mRMRe' ... ** this is package 'mRMRe' version '2.1.2.2' ** package 'mRMRe' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Data.cpp -o Data.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Filter.cpp -o Filter.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Math.cpp -o Math.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Matrix.cpp -o Matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c MutualInformationMatrix.cpp -o MutualInformationMatrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exports.cpp -o exports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mRMRe.so Data.o Filter.o Math.o Matrix.o MutualInformationMatrix.o exports.o -fopenmp installing to /tmp/th798/25909589/R-release/849/library/00LOCK-mRMRe/00new/mRMRe/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mRMRe) * installing *source* package 'neuralnet' ... ** this is package 'neuralnet' version '1.44.2' ** package 'neuralnet' successfully unpacked and MD5 sums checked ** using staged installation ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (neuralnet) * installing *source* package 'party' ... ** this is package 'party' version '1.3-18' ** package 'party' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Classes.c -o Classes.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Convenience.c -o Convenience.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Distributions.c -o Distributions.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c IndependenceTest.c -o IndependenceTest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c LinearStatistic.c -o LinearStatistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Memory.c -o Memory.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Node.c -o Node.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Predict.c -o Predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RandomForest.c -o RandomForest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c S3Classes.c -o S3Classes.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Splits.c -o Splits.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SurrogateSplits.c -o SurrogateSplits.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TestStatistic.c -o TestStatistic.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c TreeGrow.c -o TreeGrow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Utils.c -o Utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o party.so Classes.o Convenience.o Distributions.o IndependenceTest.o LinearStatistic.o Memory.o Node.o Predict.o RandomForest.o S3Classes.o Splits.o SurrogateSplits.o TestStatistic.o TreeGrow.o Utils.o init.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-party/00new/party/libs ** R ** data *** moving datasets to lazyload DB ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (party) * installing *source* package 'rFerns' ... ** this is package 'rFerns' version '5.0.0' ** package 'rFerns' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fvisibility=hidden -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ferns.c -o ferns.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rFerns.so ferns.o -fopenmp installing to /tmp/th798/25909589/R-release/849/library/00LOCK-rFerns/00new/rFerns/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rFerns) * installing *source* package 'rgenoud' ... ** this is package 'rgenoud' version '5.9-0.11' ** package 'rgenoud' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c change_order.cpp -o change_order.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c eval.cpp -o eval.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c evaluate.cpp -o evaluate.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frange_ran.cpp -o frange_ran.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c genoud.cpp -o genoud.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gradient.cpp -o gradient.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c math.cpp -o math.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c multiply.cpp -o multiply.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c numerics.cpp -o numerics.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c operators.cpp -o operators.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c print_format.cpp -o print_format.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rgenoud.cpp -o rgenoud.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rgenoud.so change_order.o eval.o evaluate.o frange_ran.o genoud.o gradient.o init.o math.o multiply.o numerics.o operators.o print_format.o rgenoud.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-rgenoud/00new/rgenoud/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rgenoud) * installing *source* package 'rotationForest' ... ** this is package 'rotationForest' version '0.1.3' ** package 'rotationForest' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rotationForest) * installing *source* package 'RRF' ... ** this is package 'RRF' version '1.9.4.1' ** package 'RRF' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RRF_init.c -o RRF_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c classTree.c -o classTree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c regTree.c -o regTree.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c regrf.c -o regrf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rf.c -o rf.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c rfsub.f -o rfsub.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rfutils.c -o rfutils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o RRF.so RRF_init.o classTree.o regTree.o regrf.o rf.o rfsub.o rfutils.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-RRF/00new/RRF/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (RRF) * installing *source* package 'rucrdtw' ... ** this is package 'rucrdtw' version '0.1.6' ** package 'rucrdtw' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dtw_functions.cpp -o dtw_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ed_functions.cpp -o ed_functions.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o rucrdtw.so RcppExports.o dtw_functions.o ed_functions.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-rucrdtw/00new/rucrdtw/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (rucrdtw) * installing *source* package 'sparseLDA' ... ** this is package 'sparseLDA' version '0.1-9' ** package 'sparseLDA' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (sparseLDA) * installing *source* package 'stepPlr' ... ** this is package 'stepPlr' version '0.93' ** package 'stepPlr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c cg_descent.f -o cg_descent.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c solveplr.f -o solveplr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c stepPlr_init.c -o stepPlr_init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o stepPlr.so cg_descent.o solveplr.o stepPlr_init.o -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-stepPlr/00new/stepPlr/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (stepPlr) * installing *source* package 'survAUC' ... ** this is package 'survAUC' version '1.4-0' ** package 'survAUC' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c R_init_survAUC.c -o R_init_survAUC.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survAUC_Cham_Diao.c -o survAUC_Cham_Diao.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survAUC_HZ.c -o survAUC_HZ.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survAUC_Hung_Chiang.c -o survAUC_Hung_Chiang.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survAUC_SongZhou.c -o survAUC_SongZhou.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survAUC_UNO.c -o survAUC_UNO.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c surv_measures.c -o surv_measures.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o survAUC.so R_init_survAUC.o survAUC_Cham_Diao.o survAUC_HZ.o survAUC_Hung_Chiang.o survAUC_SongZhou.o survAUC_UNO.o surv_measures.o utils.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-survAUC/00new/survAUC/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (survAUC) * installing *source* package 'tgp' ... ** this is package 'tgp' version '2.4-23' ** package 'tgp' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c all_draws.c -o all_draws.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c base.cc -o base.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c corr.cc -o corr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dopt.c -o dopt.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exp.cc -o exp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c exp_sep.cc -o exp_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gen_covar.c -o gen_covar.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp.cc -o gp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lh.c -o lh.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c lik_post.c -o lik_post.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c linalg.c -o linalg.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c list.cc -o list.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matern.cc -o matern.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c model.cc -o model.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mr_exp_sep.cc -o mr_exp_sep.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mstructs.cc -o mstructs.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c params.cc -o params.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict.c -o predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict_linear.c -o predict_linear.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rand_draws.c -o rand_draws.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rand_pdf.c -o rand_pdf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c randomkit.c -o randomkit.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rhelp.c -o rhelp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sim.cc -o sim.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c temper.cc -o temper.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tgp.cc -o tgp.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tree.cc -o tree.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c twovar.cc -o twovar.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o tgp.so all_draws.o base.o corr.o dopt.o exp.o exp_sep.o gen_covar.o gp.o init.o lh.o lik_post.o linalg.o list.o matern.o matrix.o model.o mr_exp_sep.o mstructs.o params.o predict.o predict_linear.o rand_draws.o rand_pdf.o randomkit.o rhelp.o sim.o temper.o tgp.o tree.o twovar.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-tgp/00new/tgp/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (tgp) * installing *source* package 'wavelets' ... ** this is package 'wavelets' version '0.3-0.2' ** package 'wavelets' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dwt_backward.c -o dwt_backward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dwt_forward.c -o dwt_forward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modwt_backward.c -o modwt_backward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c modwt_forward.c -o modwt_forward.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o wavelets.so dwt_backward.o dwt_forward.o modwt_backward.o modwt_forward.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-wavelets/00new/wavelets/libs ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (wavelets) * installing *source* package 'prodlim' ... ** this is package 'prodlim' version '2025.04.28' ** package 'prodlim' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c GMLE.c -o GMLE.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c IntIndex.c -o IntIndex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c icens_prodlim.c -o icens_prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c icens_prodlim_ml.c -o icens_prodlim_ml.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iindex.c -o iindex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c life_table.c -o life_table.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c loo.c -o loo.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c neighborhood.c -o neighborhood.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict.c -o predict.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predict_individual_survival.c -o predict_individual_survival.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim.c -o prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_clustersurv.c -o prodlim_clustersurv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_comprisk.c -o prodlim_comprisk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_multistates.c -o prodlim_multistates.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prodlim_surv.c -o prodlim_surv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sindex.c -o sindex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c summary_prodlim.c -o summary_prodlim.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o prodlim.so GMLE.o IntIndex.o icens_prodlim.o icens_prodlim_ml.o iindex.o init.o life_table.o loo.o neighborhood.o predict.o predict_individual_survival.o prodlim.o prodlim_clustersurv.o prodlim_comprisk.o prodlim_multistates.o prodlim_surv.o sindex.o summary_prodlim.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-prodlim/00new/prodlim/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (prodlim) * installing *source* package 'timereg' ... ** this is package 'timereg' version '2.0.7' ** package 'timereg' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c Gprop-odds.c -o Gprop-odds.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalen.c -o aalen.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalenC.c -o aalenC.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c additive-compSs.c -o additive-compSs.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c breslow.c -o breslow.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comprisk.c -o comprisk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comptest-cmprsk.c -o comptest-cmprsk.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c comptest.c -o comptest.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cox-aalen.c -o cox-aalen.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dynadd.c -o dynadd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ipcw-residualmean.c -o ipcw-residualmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mgresid.c -o mgresid.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pava.c -o pava.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pe-sasieni.c -o pe-sasieni.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pred.c -o pred.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-excess.c -o prop-excess.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odds-subdist2.c -o prop-odds-subdist2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odds.c -o prop-odds.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c smooth.c -o smooth.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c smooth2.c -o smooth2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timecox.c -o timecox.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c timeregister.c -o timeregister.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c two-stage-reg.c -o two-stage-reg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c unifConfBandResampling.c -o unifConfBandResampling.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o timereg.so Gprop-odds.o aalen.o aalenC.o additive-compSs.o breslow.o comprisk.o comptest-cmprsk.o comptest.o cox-aalen.o dynadd.o ipcw-residualmean.o matrix.o mgresid.o pava.o pe-sasieni.o pred.o prop-excess.o prop-odds-subdist2.o prop-odds.o smooth.o smooth2.o timecox.o timeregister.o two-stage-reg.o unifConfBandResampling.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-timereg/00new/timereg/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (timereg) * installing *source* package 'ParamHelpers' ... ** this is package 'ParamHelpers' version '1.14.2' ** package 'ParamHelpers' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c c_dfRowsToList.c -o c_dfRowsToList.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o ParamHelpers.so c_dfRowsToList.o init.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-ParamHelpers/00new/ParamHelpers/libs ** R ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (ParamHelpers) * installing *source* package 'FDboost' ... ** this is package 'FDboost' version '1.1-3' ** package 'FDboost' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (FDboost) * installing *source* package 'irace' ... ** this is package 'irace' version '4.3' ** package 'irace' successfully unpacked and MD5 sums checked ** using staged installation ** libs /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/irace.c -o iracebin/irace.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/whereami.c -o iracebin/whereami.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include iracebin/irace.o iracebin/whereami.o -o iracebin/irace /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iracebin/ablation.c -o iracebin/ablation.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include iracebin/ablation.o iracebin/whereami.o -o iracebin/ablation /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dummy/target-runner-dummy.c -o dummy/target-runner-dummy.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include dummy/target-runner-dummy.o -o dummy/target-runner-dummy installing via 'install.libs.R' to /tmp/th798/25909589/R-release/849/library/00LOCK-irace/00new/irace ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (irace) * installing *source* package 'laGP' ... ** this is package 'laGP' version '1.5-9' ** package 'laGP' successfully unpacked and MD5 sums checked ** using staged installation ** libs /home/th798/R/R-release/bin/R CMD SHLIB -o laGP.so *.c using C compiler: 'gcc (Spack GCC) 12.2.0' make[1]: Entering directory '/tmp/th798/25909589/Rtmpb0B0LG/R.INSTALL210c30693b2eef/laGP/src' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c covar.c -o covar.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c covar_sep.c -o covar_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c davies.c -o davies.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gamma.c -o gamma.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp.c -o gp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gp_sep.c -o gp_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ieci.c -o ieci.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c laGP.c -o laGP.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c laGP_sep.c -o laGP_sep.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c linalg.c -o linalg.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c matrix.c -o matrix.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c order.c -o order.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbetter.c -o rbetter.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rhelp.c -o rhelp.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DRPRINT -fopenmp -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c util.c -o util.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o laGP.so covar.o covar_sep.o davies.o gamma.o gp.o gp_sep.o ieci.o init.o laGP.o laGP_sep.o linalg.o matrix.o order.o rbetter.o rhelp.o util.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath -fopenmp make[1]: Leaving directory '/tmp/th798/25909589/Rtmpb0B0LG/R.INSTALL210c30693b2eef/laGP/src' installing to /tmp/th798/25909589/R-release/849/library/00LOCK-laGP/00new/laGP/libs ** R ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (laGP) * installing *source* package 'lintr' ... ** this is package 'lintr' version '3.3.0-1' ** package 'lintr' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (lintr) * installing *source* package 'refund' ... ** this is package 'refund' version '0.1-38' ** package 'refund' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data *** moving datasets to lazyload DB ** byte-compile and prepare package for lazy loading Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** testing if installed package can be loaded from final location Warning in check_dep_version() : ABI version mismatch: lme4 was built with Matrix ABI version 1 Current Matrix ABI version is 2 Please re-install lme4 from source or restore original 'Matrix' package ** testing if installed package keeps a record of temporary installation path * DONE (refund) * installing *source* package 'sda' ... ** this is package 'sda' version '1.3.9' ** package 'sda' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (sda) * installing *source* package 'tsfeatures' ... ** this is package 'tsfeatures' version '1.1.1' ** package 'tsfeatures' successfully unpacked and MD5 sums checked ** using staged installation ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (tsfeatures) * installing *source* package 'mets' ... ** this is package 'mets' version '1.3.8' ** package 'mets' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using Fortran compiler: 'GNU Fortran (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aalenfrailty.cpp -o aalenfrailty.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c apply.cpp -o apply.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c binomial-twostage.cpp -o binomial-twostage.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c biprobit.cpp -o biprobit.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c claytonoakes.cpp -o claytonoakes.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c clusterindex.cpp -o clusterindex.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cor.cpp -o cor.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastcox.cpp -o fastcox.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mvn.cpp -o mvn.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pch.cpp -o pch.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c prop-odd.cpp -o prop-odd.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c randomF77.c -o randomF77.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sim-tools.cpp -o sim-tools.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survival-twostage.cpp -o survival-twostage.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I../inst/include -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I'/projects/genomic-ml/R/R-release/library/mvtnorm/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c tools.cpp -o tools.o /packages/gcc/12.2.0-nnbserq/bin/gfortran -fpic -g -O2 -c tvpack.f -o tvpack.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mets.so RcppExports.o aalenfrailty.o apply.o binomial-twostage.o biprobit.o claytonoakes.o clusterindex.o cor.o fastcox.o mvn.o pch.o prop-odd.o randomF77.o sim-tools.o survival-twostage.o tools.o tvpack.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-mets/00new/mets/libs ** R ** data ** demo ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices *** copying figures ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mets) * installing *source* package 'Publish' ... ** this is package 'Publish' version '2025.07.24' ** package 'Publish' successfully unpacked and MD5 sums checked ** using staged installation ** R ** data ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (Publish) * installing *source* package 'smoof' ... ** this is package 'smoof' version '1.6.0.3' ** package 'smoof' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bbob_r_to_c_interface.c -o bbob_r_to_c_interface.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c benchmarks.c -o benchmarks.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c benchmarkshelper.c -o benchmarkshelper.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cec09.c -o cec09.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cec09_r_to_c_interface.c -o cec09_r_to_c_interface.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dtlz.cpp -o dtlz.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.BK1.c -o mof.BK1.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.ED.cpp -o mof.ED.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP1.c -o mof.MOP1.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP2.c -o mof.MOP2.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP3.c -o mof.MOP3.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP4.c -o mof.MOP4.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP5.c -o mof.MOP5.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP6.c -o mof.MOP6.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.MOP7.c -o mof.MOP7.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.cec2019.cpp -o mof.cec2019.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.kursawe.cpp -o mof.kursawe.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.viennet.c -o mof.viennet.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mof.wfg.cpp -o mof.wfg.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o smoof.so RcppExports.o bbob_r_to_c_interface.o benchmarks.o benchmarkshelper.o cec09.o cec09_r_to_c_interface.o dtlz.o mof.BK1.o mof.ED.o mof.MOP1.o mof.MOP2.o mof.MOP3.o mof.MOP4.o mof.MOP5.o mof.MOP6.o mof.MOP7.o mof.cec2019.o mof.kursawe.o mof.viennet.o mof.wfg.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-smoof/00new/smoof/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (smoof) * installing *source* package 'mlr' ... ** this is package 'mlr' version '2.19.3' ** package 'mlr' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c smote.c -o smote.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mlr.so init.o smote.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-mlr/00new/mlr/libs ** R ** data *** moving datasets to lazyload DB ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlr) * installing *source* package 'riskRegression' ... ** this is package 'riskRegression' version '2025.09.17' ** package 'riskRegression' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C++ compiler: 'g++ (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c IC-Nelson-Aalen-cens-time.cpp -o IC-Nelson-Aalen-cens-time.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c RcppExports.cpp -o RcppExports.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c aucLoobFun.cpp -o aucLoobFun.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c baseHaz.cpp -o baseHaz.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c calcSeCSC.cpp -o calcSeCSC.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c calcSeCox.cpp -o calcSeCox.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c calculateDelongCovarianceMatrix.cpp -o calculateDelongCovarianceMatrix.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c colCumSum.cpp -o colCumSum.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c confBand.cpp -o confBand.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getInfluenceFunctionAUC.cpp -o getInfluenceFunctionAUC.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c getInfluenceFunctionBrier.cpp -o getInfluenceFunctionBrier.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c iidCox.cpp -o iidCox.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c predictCIF.cpp -o predictCIF.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowCumSum.cpp -o rowCumSum.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rowSumsCrossprod.cpp -o rowSumsCrossprod.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c sweepCenterScale.cpp -o sweepCenterScale.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -I"/home/th798/R/R-release/include" -DNDEBUG -I'/projects/genomic-ml/R/R-release/library/Rcpp/include' -I'/projects/genomic-ml/R/R-release/library/RcppArmadillo/include' -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -DARMA_USE_CURRENT -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c weightedAverageIFCumhazard.cpp -o weightedAverageIFCumhazard.o /packages/gcc/12.2.0-nnbserq/bin/g++ -std=gnu++17 -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o riskRegression.so IC-Nelson-Aalen-cens-time.o RcppExports.o aucLoobFun.o baseHaz.o calcSeCSC.o calcSeCox.o calculateDelongCovarianceMatrix.o colCumSum.o confBand.o getInfluenceFunctionAUC.o getInfluenceFunctionBrier.o iidCox.o predictCIF.o rowCumSum.o rowSumsCrossprod.o sweepCenterScale.o weightedAverageIFCumhazard.o -L/home/th798/R/R-release/lib -lRlapack -L/home/th798/R/R-release/lib -lRblas -lgfortran -lm -lquadmath installing to /tmp/th798/25909589/R-release/849/library/00LOCK-riskRegression/00new/riskRegression/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (riskRegression) * installing *source* package 'mlrMBO' ... ** this is package 'mlrMBO' version '1.1.5.1' ** package 'mlrMBO' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c avl.c -o avl.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c hv.c -o hv.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c infill.c -o infill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o mlrMBO.so avl.o hv.o infill.o init.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-mlrMBO/00new/mlrMBO/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (mlrMBO) * installing *source* package 'pec' ... ** this is package 'pec' version '2025.06.24' ** package 'pec' successfully unpacked and MD5 sums checked ** using staged installation ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c SNull.c -o SNull.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c auc.c -o auc.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c brier_score.c -o brier_score.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ccr.c -o ccr.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cindex.c -o cindex.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pec.c -o pec.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c pecResiduals.c -o pecResiduals.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c survest_cox_aalen.c -o survest_cox_aalen.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o pec.so SNull.o auc.o brier_score.o ccr.o cindex.o init.o pec.o pecResiduals.o survest_cox_aalen.o installing to /tmp/th798/25909589/R-release/849/library/00LOCK-pec/00new/pec/libs ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (pec) The downloaded source packages are in '/tmp/th798/25909589/Rtmp7XMMpk/downloaded_packages' > cat("Time to install revdep:\n") Time to install revdep: > print(install.time) user system elapsed 909.246 53.047 1025.711 > print(Sys.time()) [1] "2025-12-15 01:31:23 MST" > downloaded_packages <- file.path( + tempdir(), + "downloaded_packages") > dl.glob <- file.path( + downloaded_packages, + paste0(rev.dep,"_*.tar.gz")) > rev.dep.dl.row <- cbind(rev.dep, Sys.glob(dl.glob)) > colnames(rev.dep.dl.row) <- c("pkg","path") > rev.dep.release.tar.gz <- normalizePath(rev.dep.dl.row[,"path"], mustWork=TRUE) > pkg.Rcheck <- paste0(rev.dep, ".Rcheck") > > proj.dir <- "~/genomic-ml/data.table-revdeps" > source(file.path(proj.dir, "myStatus.R")) > Rvers <- gsub("[()]", "", gsub(" ", "_", R.version[["version.string"]])) > dir.create(Rvers, showWarnings=FALSE) > Rcheck.list <- list() > for(dt.version.short in c("release", "master")){ + dt.tar.gz <- cargs[[dt.version.short]] + dt.version <- gsub(".tar.gz|/.*?_", "", dt.tar.gz) + print(Sys.time()) + install.packages(dt.tar.gz, repos=NULL) + print(Sys.time()) + check.cmd <- get_check_cmd(rev.dep.release.tar.gz) + system(check.cmd) + print(Sys.time()) + dest.Rcheck <- file.path( + Rvers, + paste0(dt.version, ".Rcheck")) + unlink(dest.Rcheck, recursive=TRUE) + file.rename(pkg.Rcheck, dest.Rcheck) + Rcheck.list[[dt.version]] <- file.path(dest.Rcheck, "00check.log") + } [1] "2025-12-15 01:31:23 MST" Installing package into '/tmp/th798/25909589/R-release/849/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.8' ** package 'data.table' successfully unpacked and MD5 sums checked ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/25909589/R-release/849/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-12-15 01:31:43 MST" * using log directory '/tmp/th798/25909589/R-release/849/mlr.Rcheck' * using R version 4.5.2 (2025-10-31) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr/DESCRIPTION' ... OK * this is package 'mlr' version '2.19.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr' can be installed ... OK * used C compiler: 'gcc (Spack GCC) 12.2.0' * checking installed package size ... INFO installed size is 5.0Mb sub-directories of 1Mb or more: R 1.4Mb data 2.3Mb * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking whether startup messages can be suppressed ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking use of PKG_*FLAGS in Makefiles ... OK * checking compiled code ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-12-15 01:35:17 MST" [1] "2025-12-15 01:35:17 MST" Installing package into '/tmp/th798/25909589/R-release/849/library' (as 'lib' is unspecified) * installing *source* package 'data.table' ... ** this is package 'data.table' version '1.17.99' ** using staged installation zlib 1.2.13 is available ok * checking if R installation supports OpenMP without any extra hints... yes ** libs using C compiler: 'gcc (Spack GCC) 12.2.0' /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c assign.c -o assign.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c between.c -o between.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c bmerge.c -o bmerge.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c chmatch.c -o chmatch.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c cj.c -o cj.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c coalesce.c -o coalesce.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c dogroups.c -o dogroups.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fastmean.c -o fastmean.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fcast.c -o fcast.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fifelse.c -o fifelse.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fmelt.c -o fmelt.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c forder.c -o forder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frank.c -o frank.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fread.c -o fread.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c freadR.c -o freadR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c froll.c -o froll.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollR.c -o frollR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frolladaptive.c -o frolladaptive.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c frollapply.c -o frollapply.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fsort.c -o fsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwrite.c -o fwrite.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c fwriteR.c -o fwriteR.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c gsumm.c -o gsumm.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c idatetime.c -o idatetime.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c ijoin.c -o ijoin.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c init.c -o init.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c inrange.c -o inrange.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c mergelist.c -o mergelist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nafill.c -o nafill.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c negate.c -o negate.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c nqrecreateindices.c -o nqrecreateindices.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c openmp-utils.c -o openmp-utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c programming.c -o programming.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c quickselect.c -o quickselect.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c rbindlist.c -o rbindlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c reorder.c -o reorder.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shellsort.c -o shellsort.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c shift.c -o shift.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c snprintf.c -o snprintf.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c subset.c -o subset.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c transpose.c -o transpose.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c types.c -o types.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c uniqlist.c -o uniqlist.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c utils.c -o utils.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c vecseq.c -o vecseq.o /packages/gcc/12.2.0-nnbserq/bin/gcc -I"/home/th798/R/R-release/include" -DNDEBUG -I/home/th798/.conda/envs/emacs1/include -I/home/th798/include -fopenmp -I/home/th798/.conda/envs/emacs1/include -fpic -I/packages/gcc/12.2.0-nnbserq/include -I/packages/zstd/1.5.2-cs5ansz/include -I/packages/zlib/1.2.13-po6bkge/include -I/packages/mpc/1.2.1-nnfoiwh/include -I/packages/mpfr/4.1.0-yfsqqka/include -I/packages/gmp/6.2.1-7ydtie6/include -c wrappers.c -o wrappers.o /packages/gcc/12.2.0-nnbserq/bin/gcc -shared -L/home/th798/.conda/envs/emacs1/lib -Wl,-rpath=/home/th798/.conda/envs/emacs1/lib -L/home/th798/lib -Wl,-rpath=/home/th798/lib -L/home/th798/lib64 -Wl,-rpath=/home/th798/lib64 -o data.table.so assign.o between.o bmerge.o chmatch.o cj.o coalesce.o dogroups.o fastmean.o fcast.o fifelse.o fmelt.o forder.o frank.o fread.o freadR.o froll.o frollR.o frolladaptive.o frollapply.o fsort.o fwrite.o fwriteR.o gsumm.o idatetime.o ijoin.o init.o inrange.o mergelist.o nafill.o negate.o nqrecreateindices.o openmp-utils.o programming.o quickselect.o rbindlist.o reorder.o shellsort.o shift.o snprintf.o subset.o transpose.o types.o uniqlist.o utils.o vecseq.o wrappers.o -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz PKG_CFLAGS = -fopenmp -I/home/th798/.conda/envs/emacs1/include PKG_LIBS = -fopenmp -L/home/th798/.conda/envs/emacs1/lib -lz if [ "data.table.so" != "data_table.so" ]; then mv data.table.so data_table.so; fi if [ "" != "Windows_NT" ] && [ `uname -s` = 'Darwin' ]; then install_name_tool -id data_table.so data_table.so; fi installing to /tmp/th798/25909589/R-release/849/library/00LOCK-data.table/00new/data.table/libs ** R ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** checking absolute paths in shared objects and dynamic libraries ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (data.table) [1] "2025-12-15 01:35:38 MST" * using log directory '/tmp/th798/25909589/R-release/849/mlr.Rcheck' * using R version 4.5.2 (2025-10-31) * using platform: x86_64-pc-linux-gnu * R was compiled by gcc (Spack GCC) 12.2.0 GNU Fortran (Spack GCC) 12.2.0 * running under: Red Hat Enterprise Linux 8.10 (Ootpa) * using session charset: ASCII * checking for file 'mlr/DESCRIPTION' ... OK * this is package 'mlr' version '2.19.3' * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for executable files ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package 'mlr' can be installed ... OK * used C compiler: 'gcc (Spack GCC) 12.2.0' * checking installed package size ... INFO installed size is 5.0Mb sub-directories of 1Mb or more: R 1.4Mb data 2.3Mb * checking package directory ... OK * checking 'build' directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... OK * checking code files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking whether startup messages can be suppressed ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking contents of 'data' directory ... OK * checking data for non-ASCII characters ... OK * checking LazyData ... OK * checking data for ASCII and uncompressed saves ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking use of PKG_*FLAGS in Makefiles ... OK * checking compiled code ... OK * checking installed files from 'inst/doc' ... OK * checking files in 'vignettes' ... OK * checking examples ... OK * checking for unstated dependencies in 'tests' ... OK * checking tests ... Running 'testthat.R' OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes ... OK * checking re-building of vignette outputs ... OK * checking PDF version of manual ... OK * DONE Status: OK [1] "2025-12-15 01:39:05 MST" > system(paste(c("diff -u", Rcheck.list), collapse=" ")) > library(data.table, lib.loc=R.home("library")) > (sig.diff.dt <- myDiff(Rvers)) Key: Empty data.table (0 rows and 3 cols): checking,master,release > > ## If there are significant differences, use git bisect to find when > ## they started. > if(nrow(sig.diff.dt)){ + dt.git <- file.path(task.dir, "data.table.git") + unlink(dt.git, recursive=TRUE, force=TRUE) + system(paste("cd ~/R/data.table && git fetch --tags")) + system(paste("git clone ~/R/data.table", dt.git)) + release.tag <- gsub(".tar.gz|.*_", "", cargs[["release"]]) + rev.parse.cmd <- paste( + "cd", dt.git, "&& git rev-parse master") + master.sha <- system(rev.parse.cmd, intern=TRUE) + merge.base.cmd <- paste( + "cd", dt.git, "&& git merge-base master", release.tag) + merge.base.sha <- system(merge.base.cmd, intern=TRUE) + old.sha <- merge.base.sha + run_R <- file.path(proj.dir, "install_dt_then_check_dep.R") + sig.diff.dt[, first.bad.commit := NA_character_] + sig.diff.dt[, comments := NA_character_] + for(diff.i in 1:nrow(sig.diff.dt)){ + sig.diff.row <- sig.diff.dt[diff.i] + bisect.cmd <- paste( + "cd", dt.git, "&&", + "git bisect start &&", + "git bisect old", old.sha, "&&", + "git bisect new master &&", + "git bisect run", + R.home('bin/Rscript'), + run_R, + shQuote(sig.diff.row$checking), + sig.diff.row$release, + rev.dep.release.tar.gz, + release.tag) + print(bisect.cmd) + bisect.out <- system(bisect.cmd, intern=TRUE) + cat(bisect.out,sep="\n") + if(is.null(attr(bisect.out,"status"))){ + first.bad.sha <- nc::capture_all_str( + bisect.out, + sha="[0-9a-f]+", + " is the first new commit")$sha + parent.cmd <- paste( + "cd ~/R/data.table && git log --pretty=%P -n 1", + first.bad.sha) + parent.sha <- system(parent.cmd, intern=TRUE) + sig.diff.dt[diff.i, first.bad.commit := first.bad.sha] + parent.msg <- paste0("parent=", parent.sha) + this.comment <- if(parent.sha==old.sha){ + paste(parent.msg, "same as git bisect old") + }else if(first.bad.sha==master.sha){ + paste("same as git bisect new=master,", parent.msg) + }else{ + parent.msg + } + sig.diff.dt[diff.i, comments := this.comment] + } + } + ## add CRAN column. + sig.diff.dt[, CRAN := { + flavor <- get_flavor(Rvers) + details <- data.table(flavor=unique(flavor))[, { + base <- "https://www.r-project.org/nosvn/R.check/" + u <- paste0(base, flavor, "/", rev.dep, "-00check.txt") + check.txt <- tempfile() + tryCatch({ + download.file(u, check.txt, quiet=TRUE) + }, error=function(e){ + NULL + }) + check.lines <- if(file.exists(check.txt)){ + readLines(check.txt,encoding="UTF-8") + }else{ + "" + } + repl.lines <- gsub("[\u2018\u2019]", "'", check.lines) + ##gsub("[‘’]", "'", check.lines) does not work with LC_ALL=C. + myStatus(line.vec=repl.lines) + }, by=flavor] + select.dt <- data.table(flavor, checking) + details[select.dt, msg, on=.(flavor, checking)] + }] + dir.create(file.path(job.dir, Rvers)) + diffs.csv <- file.path(job.dir, Rvers, "significant_differences.csv") + data.table::fwrite(sig.diff.dt, diffs.csv) + print(sig.diff.dt) + } >