X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=387937390c18b1381fccc2e18755b69f3f73c2c9;hp=5bfa2359afdd5e02908afbb776a5a86df9f24c96;hb=7b278aab9f61620b9dba31896b38aeea1eb911e2;hpb=ed436a36bade82422753f8be9c16d790232e9c91 diff --git a/src/thread.h b/src/thread.h index 5bfa2359..38793739 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,15 +60,20 @@ 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; Position rootPos; StateInfo rootState; Search::RootMoves rootMoves; Depth rootDepth, completedDepth; + Value rootDelta; CounterMoveHistory counterMoves; ButterflyHistory mainHistory; LowPlyHistory lowPlyHistory;