X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;fp=src%2Fthread.h;h=2475d2ec2545101bfbb887c475e89747f5ceab6f;hp=5bfa2359afdd5e02908afbb776a5a86df9f24c96;hb=73018a03375b4b72ee482eb5a4a2152d7e4f0aac;hpb=e8788d1b32c9356fa0a127952d48c3748d8ec826 diff --git a/src/thread.h b/src/thread.h index 5bfa2359..2475d2ec 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,10 +60,14 @@ public: Pawns::Table pawnsTable; Material::Table materialTable; size_t pvIdx, pvLast; - uint64_t ttHitAverage; + RunningAverage ttHitAverage; + RunningAverage doubleExtensionAverage[COLOR_NB]; + uint64_t nodesLastExplosive; + uint64_t nodesLastNormal; + std::atomic nodes, tbHits, bestMoveChanges; int selDepth, nmpMinPly; Color nmpColor; - std::atomic nodes, tbHits, bestMoveChanges; + ExplosionState state; Position rootPos; StateInfo rootState;