Merge commit '315f8ba4bf7d846b35f984d5e6040c14a512d9b9' into cluster

This is the last commit before there are more conflicts.
This commit is contained in:
Steinar H. Gunderson
2025-12-25 20:12:54 +01:00
25 changed files with 475 additions and 395 deletions
+3 -3
View File
@@ -77,7 +77,6 @@ struct Stack {
bool ttHit;
int cutoffCnt;
int reduction;
int quietMoveStreak;
};
@@ -331,8 +330,9 @@ class Worker {
private:
void iterative_deepening();
void do_move(Position& pos, const Move move, StateInfo& st);
void do_move(Position& pos, const Move move, StateInfo& st, const bool givesCheck);
void do_move(Position& pos, const Move move, StateInfo& st, Stack* const ss);
void
do_move(Position& pos, const Move move, StateInfo& st, const bool givesCheck, Stack* const ss);
void do_null_move(Position& pos, StateInfo& st);
void undo_move(Position& pos, const Move move);
void undo_null_move(Position& pos);