X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=6bc1be658f8bba31a8da0e54c8a159ef3b7d8133;hb=88ef68dde5882648b54cce2d1fb024c926596054;hp=2b3dea0d7cccdc05eb42f8c6f57476257a1032b8;hpb=699bae632f283746a3eee15c0950fcdbca8a355e;p=stockfish diff --git a/src/thread.h b/src/thread.h index 2b3dea0d..6bc1be65 100644 --- a/src/thread.h +++ b/src/thread.h @@ -55,26 +55,31 @@ public: void idle_loop(); void start_searching(); void wait_for_search_finished(); + size_t id() const { return idx; } Pawns::Table pawnsTable; Material::Table materialTable; size_t pvIdx, pvLast; - uint64_t ttHitAverage; + RunningAverage doubleExtensionAverage[COLOR_NB]; + uint64_t nodesLastExplosive; + uint64_t nodesLastNormal; + std::atomic nodes, tbHits, bestMoveChanges; + Value bestValue; int selDepth, nmpMinPly; Color nmpColor; - std::atomic nodes, tbHits, bestMoveChanges; + ExplosionState state; + Value optimism[COLOR_NB]; Position rootPos; StateInfo rootState; Search::RootMoves rootMoves; Depth rootDepth, completedDepth; + Value rootDelta; CounterMoveHistory counterMoves; ButterflyHistory mainHistory; - LowPlyHistory lowPlyHistory; CapturePieceToHistory captureHistory; ContinuationHistory continuationHistory[2][2]; - Score contempt; - int failedHighCnt; + Score trend; }; @@ -89,6 +94,7 @@ struct MainThread : public Thread { double previousTimeReduction; Value bestPreviousScore; + Value bestPreviousAverageScore; Value iterValue[4]; int callsCnt; bool stopOnPonderhit;