X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=8169407e09b0766e7d4edb4d556727a6b5b2ea17;hp=040b8727192ae41fe690b6f13a0819a4f4265b6f;hb=f5727deee3823accf791984836f45db78e3a53e5;hpb=13a73f67c018e58b2fd46f886c45ef2b75188c8e diff --git a/src/thread.h b/src/thread.h index 040b8727..8169407e 100644 --- a/src/thread.h +++ b/src/thread.h @@ -67,7 +67,6 @@ struct SplitPoint { Depth depth; Value beta; int nodeType; - Move threatMove; bool cutNode; // Const pointers to shared data @@ -118,7 +117,7 @@ struct Thread : public ThreadBase { template void split(Position& pos, const Search::Stack* ss, Value alpha, Value beta, Value* bestValue, Move* bestMove, - Depth depth, Move threatMove, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode); + Depth depth, int moveCount, MovePicker* movePicker, int nodeType, bool cutNode); SplitPoint splitPoints[MAX_SPLITPOINTS_PER_THREAD]; Material::Table materialTable; @@ -157,7 +156,7 @@ struct TimerThread : public ThreadBase { struct ThreadPool : public std::vector { void init(); // No c'tor and d'tor, threads rely on globals that should - void exit(); // be initialized and valid during the whole thread lifetime. + void exit(); // be initialized and are valid during the whole thread lifetime. MainThread* main() { return static_cast((*this)[0]); } void read_uci_options();