X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=cd206faab987c71ee5bcc41406b2e42d75dab3eb;hb=e4b7403f127a36a35bbace9f833ab43babd98a6c;hp=5785fd25eb7ab28eaa972c32fe9b51fb80a7758b;hpb=f90274d8ce1aad4ad0595aacbceb74b6cbe306a8;p=stockfish diff --git a/src/thread.h b/src/thread.h index 5785fd25..cd206faa 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,22 +60,27 @@ public: 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; };