X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=3512605c67aaa8120a0cfbea30012ca969894a41;hp=86e5565f2e3363667bbf07a34a777fdec56f5b70;hb=5410424e3d036b43715c7989aa99e449cdcde18e;hpb=99d914985f6ddb1ee22b232d41f17a35e1d34f89 diff --git a/src/thread.h b/src/thread.h index 86e5565f..3512605c 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,17 +60,16 @@ public: Material::Table materialTable; Endgames endgames; size_t idx, PVIdx; - int maxPly, callsCnt; - uint64_t tbHits; + int selDepth; + std::atomic nodes, tbHits; Position rootPos; Search::RootMoves rootMoves; Depth rootDepth; Depth completedDepth; - std::atomic_bool resetCalls; - MoveStats counterMoves; - HistoryStats history; - CounterMoveHistoryStats counterMoveHistory; + CounterMoveHistory counterMoves; + ButterflyHistory mainHistory; + ContinuationHistory contHistory; }; @@ -78,10 +77,12 @@ public: struct MainThread : public Thread { virtual void search(); + void check_time(); bool easyMovePlayed, failedLow; double bestMoveChanges; Value previousScore; + int callsCnt = 0; }; @@ -100,6 +101,8 @@ struct ThreadPool : public std::vector { uint64_t nodes_searched() const; uint64_t tb_hits() const; + std::atomic_bool stop, ponder, stopOnPonderhit; + private: StateListPtr setupStates; };