* installing *source* package 'RcppHungarian' ...
** package 'RcppHungarian' successfully unpacked and MD5 sums checked
** using staged installation
** libs
using C++ compiler: 'g++.exe (GCC) 13.2.0'
make[1]: Entering directory '/d/temp/RtmpyK9VFC/R.INSTALL24dfc21d441a0/RcppHungarian/src'
g++ -std=gnu++17  -I"D:/RCompile/recent/R/include" -DNDEBUG -I../inst/include/ -I'D:/RCompile/CRANpkg/lib/4.5/Rcpp/include'   -I"d:/rtools44/x86_64-w64-mingw32.static.posix/include"     -pedantic -O2 -Wall  -mfpmath=sse -msse2 -mstackrealign  -c RcppExports.cpp -o RcppExports.o
In file included from RcppExports.cpp:4:
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::assignmentoptimal(int*, double*, double*, int, int)':
../inst/include/RcppHungarian.h:169:11: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
  169 |           if (fabs(distMatrix[row + nOfRows*col]) < DBL_EPSILON)
      |           ^~
../inst/include/RcppHungarian.h:177:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  177 |             for (row = 0; row<nOfRows; row++)
      |             ^~~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step2b(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:254:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  254 |     for (col = 0; col<nOfColumns; col++)
      |     ^~~
../inst/include/RcppHungarian.h:258:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  258 |       if (nOfCoveredColumns == minDim)
      |       ^~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step3(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:288:15: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  288 |               for (starCol = 0; starCol<nOfColumns; starCol++)
      |               ^~~
../inst/include/RcppHungarian.h:292:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  292 |                 if (starCol == nOfColumns) /* no starred zero found */
      |                 ^~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step4(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int, int, int)':
../inst/include/RcppHungarian.h:326:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  326 |     for (starRow = 0; starRow<nOfRows; starRow++)
      |     ^~~
../inst/include/RcppHungarian.h:330:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  330 |       while (starRow<nOfRows)
      |       ^~~~~
../inst/include/RcppHungarian.h:337:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  337 |         for (primeCol = 0; primeCol<nOfColumns; primeCol++)
      |         ^~~
../inst/include/RcppHungarian.h:342:11: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  342 |           newStarMatrix[primeRow + nOfRows*primeCol] = true;
      |           ^~~~~~~~~~~~~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step5(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:374:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  374 |         for (col = 0; col<nOfColumns; col++)
      |         ^~~
../inst/include/RcppHungarian.h:383:11: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  383 |           for (row = 0; row<nOfRows; row++)
      |           ^~~
../inst/include/RcppHungarian.h:383:11: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
../inst/include/RcppHungarian.h:389:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  389 |             for (col = 0; col<nOfColumns; col++)
      |             ^~~
../inst/include/RcppHungarian.h:389:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
../inst/include/RcppHungarian.h:395:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  395 |               step3(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, nOfColumns, minDim);
      |               ^~~~~
g++ -std=gnu++17  -I"D:/RCompile/recent/R/include" -DNDEBUG -I../inst/include/ -I'D:/RCompile/CRANpkg/lib/4.5/Rcpp/include'   -I"d:/rtools44/x86_64-w64-mingw32.static.posix/include"     -pedantic -O2 -Wall  -mfpmath=sse -msse2 -mstackrealign  -c hungarian.cpp -o hungarian.o
In file included from hungarian.cpp:2:
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::assignmentoptimal(int*, double*, double*, int, int)':
../inst/include/RcppHungarian.h:169:11: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
  169 |           if (fabs(distMatrix[row + nOfRows*col]) < DBL_EPSILON)
      |           ^~
../inst/include/RcppHungarian.h:177:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
  177 |             for (row = 0; row<nOfRows; row++)
      |             ^~~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step2b(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:254:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  254 |     for (col = 0; col<nOfColumns; col++)
      |     ^~~
../inst/include/RcppHungarian.h:258:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  258 |       if (nOfCoveredColumns == minDim)
      |       ^~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step3(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:288:15: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  288 |               for (starCol = 0; starCol<nOfColumns; starCol++)
      |               ^~~
../inst/include/RcppHungarian.h:292:17: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  292 |                 if (starCol == nOfColumns) /* no starred zero found */
      |                 ^~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step4(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int, int, int)':
../inst/include/RcppHungarian.h:326:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  326 |     for (starRow = 0; starRow<nOfRows; starRow++)
      |     ^~~
../inst/include/RcppHungarian.h:330:7: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  330 |       while (starRow<nOfRows)
      |       ^~~~~
../inst/include/RcppHungarian.h:337:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  337 |         for (primeCol = 0; primeCol<nOfColumns; primeCol++)
      |         ^~~
../inst/include/RcppHungarian.h:342:11: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  342 |           newStarMatrix[primeRow + nOfRows*primeCol] = true;
      |           ^~~~~~~~~~~~~
../inst/include/RcppHungarian.h: In member function 'void HungarianAlgorithm::step5(int*, double*, bool*, bool*, bool*, bool*, bool*, int, int, int)':
../inst/include/RcppHungarian.h:374:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
  374 |         for (col = 0; col<nOfColumns; col++)
      |         ^~~
../inst/include/RcppHungarian.h:383:11: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  383 |           for (row = 0; row<nOfRows; row++)
      |           ^~~
../inst/include/RcppHungarian.h:383:11: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
../inst/include/RcppHungarian.h:389:13: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  389 |             for (col = 0; col<nOfColumns; col++)
      |             ^~~
../inst/include/RcppHungarian.h:389:13: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
../inst/include/RcppHungarian.h:395:15: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
  395 |               step3(assignment, distMatrix, starMatrix, newStarMatrix, primeMatrix, coveredColumns, coveredRows, nOfRows, nOfColumns, minDim);
      |               ^~~~~
g++ -std=gnu++17 -shared -s -static-libgcc -o RcppHungarian.dll tmp.def RcppExports.o hungarian.o -Ld:/rtools44/x86_64-w64-mingw32.static.posix/lib/x64 -Ld:/rtools44/x86_64-w64-mingw32.static.posix/lib -LD:/RCompile/recent/R/bin/x64 -lR
make[1]: Leaving directory '/d/temp/RtmpyK9VFC/R.INSTALL24dfc21d441a0/RcppHungarian/src'
make[1]: Entering directory '/d/temp/RtmpyK9VFC/R.INSTALL24dfc21d441a0/RcppHungarian/src'
make[1]: Leaving directory '/d/temp/RtmpyK9VFC/R.INSTALL24dfc21d441a0/RcppHungarian/src'
installing to d:/Rcompile/CRANpkg/lib/4.5/00LOCK-RcppHungarian/00new/RcppHungarian/libs/x64
** 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
* MD5 sums
packaged installation of 'RcppHungarian' as RcppHungarian_0.3.zip
* DONE (RcppHungarian)