X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=46c40d9bfdab92e3fe3d655f4d50e03629511c3a;hp=fbd3b7f4af2e58509ae1530ab6ad6efe8bbbbb76;hb=3b8f66f8accefe86db9296fa276e4b33cdc450e2;hpb=9a1d5f0f1d8a12a85b198688d4f1d636a146eb7a diff --git a/src/thread.h b/src/thread.h index fbd3b7f4..46c40d9b 100644 --- a/src/thread.h +++ b/src/thread.h @@ -68,6 +68,7 @@ struct SplitPoint { Value beta; int nodeType; Move threatMove; + bool cutNode; // Const pointers to shared data MovePicker* movePicker; @@ -103,7 +104,7 @@ struct Thread { template void split(Position& pos, Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove, - Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType); + Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode); SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD]; Material::Table materialTable;