* installing *source* package ‘MTS’ ...
** package ‘MTS’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
using C++ compiler: ‘g++-13 (GCC) 13.2.0’
make[1]: Entering directory '/data/gannet/ripley/R/packages/tests-devel/MTS/src'
g++-13 -std=gnu++17 -I"/data/gannet/ripley/R/R-devel/include" -DNDEBUG  -I'/data/gannet/ripley/R/test-dev/Rcpp/include' -I'/data/gannet/ripley/R/test-dev/RcppEigen/include' -I/usr/local/include    -fpic  -g -O2 -Wall -pedantic -mtune=native -Wno-ignored-attributes -Wno-parentheses -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection   -c RcppExports.cpp -o RcppExports.o
g++-13 -std=gnu++17 -I"/data/gannet/ripley/R/R-devel/include" -DNDEBUG  -I'/data/gannet/ripley/R/test-dev/Rcpp/include' -I'/data/gannet/ripley/R/test-dev/RcppEigen/include' -I/usr/local/include    -fpic  -g -O2 -Wall -pedantic -mtune=native -Wno-ignored-attributes -Wno-parentheses -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection   -c varma.cpp -o varma.o
varma.cpp: In member function 'void CMatrix::append(std::vector<double>)':
varma.cpp:85:47: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   85 |    if (row.size()>0 && (ncol() == 0 || ncol() == row.size())){
      |                                        ~~~~~~~^~~~~~~~~~~~~
varma.cpp: In member function 'void CMatrix::transpose()':
varma.cpp:95:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   95 |       for (int j = 0; j < elements[0].size(); j++) {
      |                       ~~^~~~~~~~~~~~~~~~~~~~
varma.cpp:97:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<double> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   97 |          for (int i = 0; i < elements.size(); i++) {
      |                          ~~^~~~~~~~~~~~~~~~~
varma.cpp: In member function 'std::vector<double> CMatrix::operator()(int, bool)':
varma.cpp:116:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<double> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  116 |       for (int i = 0; i < elements.size(); i++){
      |                       ~~^~~~~~~~~~~~~~~~~
varma.cpp: In function 'CMatrix Cnegative(CMatrix&)':
varma.cpp:129:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<double> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  129 |       for (int i = 0; i < A.elements.size(); i++) {
      |                       ~~^~~~~~~~~~~~~~~~~~~
varma.cpp:130:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  130 |          for (int j = 0; j < A.elements[0].size(); j++) {
      |                          ~~^~~~~~~~~~~~~~~~~~~~~~
varma.cpp: In function 'CMatrix Ctranspose(CMatrix&)':
varma.cpp:141:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  141 |       for (int j = 0; j < A.elements[0].size(); j++) {
      |                       ~~^~~~~~~~~~~~~~~~~~~~~~
varma.cpp:143:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<double> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  143 |          for (int i = 0; i < A.elements.size(); i++) {
      |                          ~~^~~~~~~~~~~~~~~~~~~
varma.cpp: In function 'CMatrix Cdiagonal(std::vector<double>&)':
varma.cpp:154:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  154 |    for (int i = 0; i < A.size(); i++){
      |                    ~~^~~~~~~~~~
varma.cpp: In function 'CMatrix as_matrix(std::vector<double>, bool)':
varma.cpp:215:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  215 |       for (int i = 0; i < x.size(); i++){
      |                       ~~^~~~~~~~~~
varma.cpp: In member function 'void Varma::compResiduals()':
varma.cpp:492:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  492 |       for (int r = 0; r < Estimate_ARMA.size(); r++){
      |                       ~~^~~~~~~~~~~~~~~~~~~~~~
varma.cpp: In member function 'void SVarma::compResiduals()':
varma.cpp:762:25: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<double>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  762 |       for (int r = 0; r < Estimate_ARMA.size(); r++){
      |                       ~~^~~~~~~~~~~~~~~~~~~~~~
varma.cpp: In constructor 'SVarma::SVarma(CMatrix&, CMatrix&, std::vector<double>&, bool, std::vector<int>, std::vector<int>, std::vector<int>, CMatrix, bool)':
varma.cpp:804:8: warning: variable 'i_start' set but not used [-Wunused-but-set-variable]
  804 |    int i_start = 0;
      |        ^~~~~~~
varma.cpp: In constructor 'VMADemean::VMADemean(CMatrix&, CMatrix&, std::vector<double>&, int, bool)':
varma.cpp:950:8: warning: variable 'i_start' set but not used [-Wunused-but-set-variable]
  950 |    int i_start = 0;
      |        ^~~~~~~
g++-13 -std=gnu++17 -I"/data/gannet/ripley/R/R-devel/include" -DNDEBUG  -I'/data/gannet/ripley/R/test-dev/Rcpp/include' -I'/data/gannet/ripley/R/test-dev/RcppEigen/include' -I/usr/local/include    -fpic  -g -O2 -Wall -pedantic -mtune=native -Wno-ignored-attributes -Wno-parentheses -Wp,-D_FORTIFY_SOURCE=3 -fexceptions -fstack-protector-strong -fstack-clash-protection -fcf-protection   -c varmaResiduals.cpp -o varmaResiduals.o
g++-13 -std=gnu++17 -shared -L/usr/local/gcc13/lib64 -L/usr/local/lib64 -L/usr/local/clang18/lib/x86_64-unknown-linux-gnu -o MTS.so RcppExports.o varma.o varmaResiduals.o
make[1]: Leaving directory '/data/gannet/ripley/R/packages/tests-devel/MTS/src'
make[1]: Entering directory '/data/gannet/ripley/R/packages/tests-devel/MTS/src'
make[1]: Leaving directory '/data/gannet/ripley/R/packages/tests-devel/MTS/src'
installing to /data/gannet/ripley/R/packages/tests-devel/MTS.Rcheck/00LOCK-MTS/00new/MTS/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 (MTS)