Building SeaJay for OpenBench...
Compiler: g++
Output: SeaJay-791E9A37
# Configure with CMake (only build engine, not tests)
cmake -S . -B openbench-build \
	-DCMAKE_BUILD_TYPE=Release \
	-DCMAKE_CXX_COMPILER=g++ \
	-DCMAKE_CXX_FLAGS="-O3 -DNDEBUG -march=native -flto" \
	-DEVALFILE="" \
	-DBUILD_TESTING=OFF
-- The CXX compiler identification is GNU 13.3.0
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/g++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Configuring done (0.2s)
-- Generating done (0.0s)
CMake Warning:
  Manually-specified variables were not used by the project:

    BUILD_TESTING
    EVALFILE


-- Build files have been written to: /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build
# Build ONLY the engine binary (not tests or utilities)
make -C openbench-build -j seajay
make[1]: Entering directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[2]: Entering directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[3]: Entering directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Entering directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Leaving directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[4]: Entering directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
[  6%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/pawn_structure.cpp.o
[  9%] Building CXX object CMakeFiles/seajay_core.dir/src/core/move_generation.cpp.o
[  6%] Building CXX object CMakeFiles/seajay_core.dir/src/core/perft.cpp.o
[ 22%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/pst.cpp.o
[ 22%] Building CXX object CMakeFiles/seajay_core.dir/src/core/attack_cache.cpp.o
[ 22%] Building CXX object CMakeFiles/seajay_core.dir/src/core/see.cpp.o
[ 22%] Building CXX object CMakeFiles/seajay_core.dir/src/core/move_list.cpp.o
[ 25%] Building CXX object CMakeFiles/seajay_core.dir/src/core/board.cpp.o
[ 29%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/king_safety.cpp.o
[ 35%] Building CXX object CMakeFiles/seajay_core.dir/src/core/board_safety.cpp.o
[ 35%] Building CXX object CMakeFiles/seajay_core.dir/src/core/transposition_table.cpp.o
[ 38%] Building CXX object CMakeFiles/seajay_core.dir/src/search/killer_moves.cpp.o
[ 48%] Building CXX object CMakeFiles/seajay_core.dir/src/search/negamax.cpp.o
[ 48%] Building CXX object CMakeFiles/seajay_core.dir/src/search/search.cpp.o
[ 48%] Building CXX object CMakeFiles/seajay_core.dir/src/search/move_ordering.cpp.o
[ 51%] Building CXX object CMakeFiles/seajay_core.dir/src/evaluation/evaluate.cpp.o
[ 54%] Building CXX object CMakeFiles/seajay_core.dir/src/search/countermoves.cpp.o
[ 58%] Building CXX object CMakeFiles/seajay_core.dir/src/search/time_management.cpp.o
[ 67%] Building CXX object CMakeFiles/seajay_core.dir/src/search/ranked_move_picker.cpp.o
[ 67%] Building CXX object CMakeFiles/seajay_core.dir/src/search/aspiration_window.cpp.o
[ 67%] Building CXX object CMakeFiles/seajay_core.dir/src/search/history_heuristic.cpp.o
[ 70%] Building CXX object CMakeFiles/seajay_core.dir/src/search/quiescence.cpp.o
[ 74%] Building CXX object CMakeFiles/seajay_core.dir/src/search/quiescence_performance.cpp.o
[ 77%] Building CXX object CMakeFiles/seajay_core.dir/src/search/node_explosion_stats.cpp.o
[ 80%] Building CXX object CMakeFiles/seajay_core.dir/src/search/lmr.cpp.o
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp: In static member function ‘static seajay::ZobristKeyManager::ZobristUpdate seajay::ZobristKeyManager::buildUpdate(const seajay::Board&, seajay::Move)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:445:19: warning: unused variable ‘promotedType’ [-Wunused-variable]
  445 |         PieceType promotedType = promotionType(move);
      |                   ^~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:455:16: warning: unused variable ‘capturedSquare’ [-Wunused-variable]
  455 |         Square capturedSquare = (us == WHITE) ? to - 8 : to + 8;
      |                ^~~~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp: In static member function ‘static bool seajay::MoveSequenceValidator::checkForDoubleMoves(const seajay::Move*, size_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:563:16: warning: unused variable ‘prevTo’ [-Wunused-variable]
  563 |         Square prevTo = moveTo(moves[i-1]);
      |                ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board_safety.cpp:564:16: warning: unused variable ‘currFrom’ [-Wunused-variable]
  564 |         Square currFrom = moveFrom(moves[i]);
      |                ^~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/transposition_table.cpp: In member function ‘void seajay::TranspositionTable::store(seajay::Hash, seajay::Move, int16_t, int16_t, uint8_t, seajay::Bound)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/transposition_table.cpp:142:27: warning: comparison of integer expressions of different signedness: ‘int’ and ‘const size_t’ {aka ‘const long unsigned int’} [-Wsign-compare]
  142 |         for (int i = 0; i < CLUSTER_SIZE; ++i) {
      |                         ~~^~~~~~~~~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp:4:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h: In function ‘uint64_t seajay::simd::getIsolatedPawnsFast(uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:118:24: warning: unused variable ‘NOT_FILE_A’ [-Wunused-variable]
  118 |     constexpr uint64_t NOT_FILE_A = ~FILE_A;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:119:24: warning: unused variable ‘NOT_FILE_H’ [-Wunused-variable]
  119 |     constexpr uint64_t NOT_FILE_H = ~FILE_H;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h: In function ‘uint64_t seajay::simd::getBackwardPawnsFast(uint64_t, uint64_t, bool, uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:216:22: warning: unused variable ‘leftFile’ [-Wunused-variable]
  216 |             uint64_t leftFile = FILE_A << (file - 1);
      |                      ^~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:189:24: warning: unused variable ‘FILE_H’ [-Wunused-variable]
  189 |     constexpr uint64_t FILE_H = 0x8080808080808080ULL;
      |                        ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp: In member function ‘void seajay::PawnStructure::clear()’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp:23:16: warning: ‘void* memset(void*, int, size_t)’ clearing an object of non-trivial type ‘struct seajay::PawnEntry’; use assignment or value-initialization instead [-Wclass-memaccess]
   23 |     std::memset(m_table, 0, m_size * sizeof(PawnEntry));
      |     ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/pawn_structure.h:10:8: note: ‘struct seajay::PawnEntry’ declared here
   10 | struct PawnEntry {
      |        ^~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/see.cpp: In member function ‘seajay::Bitboard seajay::SEECalculator::getXrayAttackers(const seajay::Board&, seajay::Square, seajay::Bitboard, seajay::Bitboard) const’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/see.cpp:230:12: warning: unused variable ‘removedSq’ [-Wunused-variable]
  230 |     Square removedSq = lsb(removedPiece);
      |            ^~~~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/negamax.h:3,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/negamax.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/see.cpp: In member function ‘seajay::SEEValue seajay::SEECalculator::computeSEE(const seajay::Board&, seajay::Square, seajay::Color, seajay::Bitboard, seajay::Bitboard) const’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/see.cpp:589:16: warning: unused variable ‘attackerSquare’ [-Wunused-variable]
  589 |         Square attackerSquare = lsb(attackerBB);
      |                ^~~~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/negamax.cpp: In function ‘seajay::eval::Score seajay::search::negamax(seajay::Board&, int, int, seajay::eval::Score, seajay::eval::Score, seajay::SearchInfo&, SearchData&, const SearchLimits&, seajay::TranspositionTable*, TriangularPV*, bool)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/negamax.cpp:1100:14: warning: unused variable ‘isCutoffMove’ [-Wunused-variable]
 1100 |         bool isCutoffMove = false;
      |              ^~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/negamax.cpp:299:9: warning: variable ‘ttDepth’ set but not used [-Wunused-but-set-variable]
  299 |     int ttDepth = -1;
      |         ^~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/evaluate.cpp:10:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h: In function ‘uint64_t seajay::simd::getIsolatedPawnsFast(uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:118:24: warning: unused variable ‘NOT_FILE_A’ [-Wunused-variable]
  118 |     constexpr uint64_t NOT_FILE_A = ~FILE_A;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:119:24: warning: unused variable ‘NOT_FILE_H’ [-Wunused-variable]
  119 |     constexpr uint64_t NOT_FILE_H = ~FILE_H;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h: In function ‘uint64_t seajay::simd::getBackwardPawnsFast(uint64_t, uint64_t, bool, uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:216:22: warning: unused variable ‘leftFile’ [-Wunused-variable]
  216 |             uint64_t leftFile = FILE_A << (file - 1);
      |                      ^~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/evaluation/../core/simd_utils.h:189:24: warning: unused variable ‘FILE_H’ [-Wunused-variable]
  189 |     constexpr uint64_t FILE_H = 0x8080808080808080ULL;
      |                        ^~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/time_management.h:8,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/time_management.cpp:4:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence.h:6,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence_performance.cpp:2:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence.h:6,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence_performance.cpp: In static member function ‘static seajay::search::QuiescencePerformanceData seajay::search::QuiescencePerformanceBenchmark::benchmarkPosition(const std::string&, int, bool)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/quiescence_performance.cpp:109:10: warning: variable ‘startTime’ set but not used [-Wunused-but-set-variable]
  109 |     auto startTime = std::chrono::high_resolution_clock::now();
      |          ^~~~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.h:47,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/search.h:5,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/search.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp: In lambda function:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:14:58: error: expected ‘{’ before ‘inline’
   14 |     #define ALWAYS_INLINE __attribute__((always_inline)) inline
      |                                                          ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:317:59: note: in expansion of macro ‘ALWAYS_INLINE’
  317 |             auto isCaptureOfChecker = [&](const Move& mv) ALWAYS_INLINE {
      |                                                           ^~~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp: In constructor ‘seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:14:58: error: expected ‘,’ or ‘;’ before ‘inline’
   14 |     #define ALWAYS_INLINE __attribute__((always_inline)) inline
      |                                                          ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:317:59: note: in expansion of macro ‘ALWAYS_INLINE’
  317 |             auto isCaptureOfChecker = [&](const Move& mv) ALWAYS_INLINE {
      |                                                           ^~~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp: In lambda function:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:14:58: error: expected ‘{’ before ‘inline’
   14 |     #define ALWAYS_INLINE __attribute__((always_inline)) inline
      |                                                          ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:331:52: note: in expansion of macro ‘ALWAYS_INLINE’
  331 |             auto isBlockMove = [&](const Move& mv) ALWAYS_INLINE {
      |                                                    ^~~~~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp: In constructor ‘seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:14:58: error: expected ‘,’ or ‘;’ before ‘inline’
   14 |     #define ALWAYS_INLINE __attribute__((always_inline)) inline
      |                                                          ^~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:331:52: note: in expansion of macro ‘ALWAYS_INLINE’
  331 |             auto isBlockMove = [&](const Move& mv) ALWAYS_INLINE {
      |                                                    ^~~~~~~~~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board.cpp:5:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h: In function ‘uint64_t seajay::simd::getIsolatedPawnsFast(uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h:118:24: warning: unused variable ‘NOT_FILE_A’ [-Wunused-variable]
  118 |     constexpr uint64_t NOT_FILE_A = ~FILE_A;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h:119:24: warning: unused variable ‘NOT_FILE_H’ [-Wunused-variable]
  119 |     constexpr uint64_t NOT_FILE_H = ~FILE_H;
      |                        ^~~~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h: In function ‘uint64_t seajay::simd::getBackwardPawnsFast(uint64_t, uint64_t, bool, uint64_t)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h:216:22: warning: unused variable ‘leftFile’ [-Wunused-variable]
  216 |             uint64_t leftFile = FILE_A << (file - 1);
      |                      ^~~~~~~~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/simd_utils.h:189:24: warning: unused variable ‘FILE_H’ [-Wunused-variable]
  189 |     constexpr uint64_t FILE_H = 0x8080808080808080ULL;
      |                        ^~~~~~
In file included from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/lmr.h:4,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/lmr.cpp:1:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h: In static member function ‘static int seajay::search::SearchData::PruneBreakdown::bucketForDepth(int)’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:13: warning: this ‘if’ clause does not guard... [-Wmisleading-indentation]
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |             ^~
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/types.h:417:39: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the ‘if’
  417 |             if (depth <= 3) return 0; if (depth <= 6) return 1; if (depth <= 9) return 2; return 3;
      |                                       ^~
In file included from /usr/include/c++/13/bits/stl_algobase.h:71,
                 from /usr/include/c++/13/string:51,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/../core/types.h:4,
                 from /tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.h:39:
/usr/include/c++/13/bits/predefined_ops.h: In instantiation of ‘constexpr bool __gnu_cxx::__ops::_Iter_pred<_Predicate>::operator()(_Iterator) [with _Iterator = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’:
/usr/include/c++/13/bits/stl_algo.h:1530:16:   required from ‘_ForwardIterator std::__stable_partition_adaptive(_ForwardIterator, _ForwardIterator, _Predicate, _Distance, _Pointer, _Distance) [with _ForwardIterator = short unsigned int*; _Pointer = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >; _Distance = long int]’
/usr/include/c++/13/bits/stl_algo.h:1585:34:   required from ‘_ForwardIterator std::__stable_partition(_ForwardIterator, _ForwardIterator, _Predicate) [with _ForwardIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1620:37:   required from ‘_BIter std::stable_partition(_BIter, _BIter, _Predicate) [with _BIter = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:340:51:   required from here
/usr/include/c++/13/bits/predefined_ops.h:318:30: error: void value not ignored as it ought to be
  318 |         { return bool(_M_pred(*__it)); }
      |                       ~~~~~~~^~~~~~~
/usr/include/c++/13/bits/predefined_ops.h: In instantiation of ‘constexpr bool __gnu_cxx::__ops::_Iter_pred<_Predicate>::operator()(_Iterator) [with _Iterator = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’:
/usr/include/c++/13/bits/stl_algo.h:1530:16:   required from ‘_ForwardIterator std::__stable_partition_adaptive(_ForwardIterator, _ForwardIterator, _Predicate, _Distance, _Pointer, _Distance) [with _ForwardIterator = short unsigned int*; _Pointer = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >; _Distance = long int]’
/usr/include/c++/13/bits/stl_algo.h:1585:34:   required from ‘_ForwardIterator std::__stable_partition(_ForwardIterator, _ForwardIterator, _Predicate) [with _ForwardIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1620:37:   required from ‘_BIter std::stable_partition(_BIter, _BIter, _Predicate) [with _BIter = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:341:34:   required from here
/usr/include/c++/13/bits/predefined_ops.h:318:30: error: void value not ignored as it ought to be
/usr/include/c++/13/bits/predefined_ops.h: In instantiation of ‘constexpr bool __gnu_cxx::__ops::_Iter_negate<_Predicate>::operator()(_Iterator) [with _Iterator = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’:
/usr/include/c++/13/bits/stl_algobase.h:2072:14:   required from ‘constexpr _RandomAccessIterator std::__find_if(_RandomAccessIterator, _RandomAccessIterator, _Predicate, random_access_iterator_tag) [with _RandomAccessIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_negate<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:112:28:   required from ‘constexpr _InputIterator std::__find_if_not(_InputIterator, _InputIterator, _Predicate) [with _InputIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1572:35:   required from ‘_ForwardIterator std::__stable_partition(_ForwardIterator, _ForwardIterator, _Predicate) [with _ForwardIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1620:37:   required from ‘_BIter std::stable_partition(_BIter, _BIter, _Predicate) [with _BIter = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:340:51:   required from here
/usr/include/c++/13/bits/predefined_ops.h:395:31: error: void value not ignored as it ought to be
  395 |         { return !bool(_M_pred(*__it)); }
      |                        ~~~~~~~^~~~~~~
/usr/include/c++/13/bits/predefined_ops.h: In instantiation of ‘constexpr bool __gnu_cxx::__ops::_Iter_negate<_Predicate>::operator()(_Iterator) [with _Iterator = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’:
/usr/include/c++/13/bits/stl_algobase.h:2072:14:   required from ‘constexpr _RandomAccessIterator std::__find_if(_RandomAccessIterator, _RandomAccessIterator, _Predicate, random_access_iterator_tag) [with _RandomAccessIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_negate<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:112:28:   required from ‘constexpr _InputIterator std::__find_if_not(_InputIterator, _InputIterator, _Predicate) [with _InputIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1572:35:   required from ‘_ForwardIterator std::__stable_partition(_ForwardIterator, _ForwardIterator, _Predicate) [with _ForwardIterator = short unsigned int*; _Predicate = __gnu_cxx::__ops::_Iter_pred<seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)> >]’
/usr/include/c++/13/bits/stl_algo.h:1620:37:   required from ‘_BIter std::stable_partition(_BIter, _BIter, _Predicate) [with _BIter = short unsigned int*; _Predicate = seajay::search::RankedMovePicker::RankedMovePicker(const seajay::Board&, seajay::Move, const seajay::search::KillerMoves*, const seajay::search::HistoryHeuristic*, const seajay::CounterMoves*, const seajay::search::CounterMoveHistory*, seajay::Move, int, int, int, const seajay::search::SearchLimits*, seajay::search::SearchData*)::<lambda(const seajay::Move&)>]’
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/search/ranked_move_picker.cpp:341:34:   required from here
/usr/include/c++/13/bits/predefined_ops.h:395:31: error: void value not ignored as it ought to be
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board.cpp: In member function ‘bool seajay::Board::isRepetitionDrawInSearch(const seajay::SearchInfo&, int) const’:
/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/src/core/board.cpp:2392:9: warning: unused variable ‘maxLookback’ [-Wunused-variable]
 2392 |     int maxLookback = std::min(static_cast<int>(m_halfmoveClock), 100);
      |         ^~~~~~~~~~~
make[4]: *** [CMakeFiles/seajay_core.dir/build.make:286: CMakeFiles/seajay_core.dir/src/search/ranked_move_picker.cpp.o] Error 1
make[4]: *** Waiting for unfinished jobs....
make[4]: Leaving directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[3]: *** [CMakeFiles/Makefile2:88: CMakeFiles/seajay_core.dir/all] Error 2
make[3]: Leaving directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[2]: *** [CMakeFiles/Makefile2:121: CMakeFiles/seajay.dir/rule] Error 2
make[2]: Leaving directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make[1]: *** [Makefile:192: seajay] Error 2
make[1]: Leaving directory '/tmp/tmp3vkywdm3/SeaJay/SeaJay-tmp/openbench-build'
make: *** [Makefile:51: all] Error 2