X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fthread.h;h=e04d303a271996ee39f2335997e58e6fd4c3bcf7;hb=0e89d6e7546d26a19a108d047b489d9ba6f7970c;hp=4cf5dabb5b1fb44cee51c1a51333448f25e2b8d8;hpb=c0ff241464338f7e5bb815b4f72c2a95d12244a0;p=stockfish diff --git a/src/thread.h b/src/thread.h index 4cf5dabb..e04d303a 100644 --- a/src/thread.h +++ b/src/thread.h @@ -55,15 +55,18 @@ public: void idle_loop(); void start_searching(); void wait_for_search_finished(); - int id() const { return idx; } + 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; int selDepth, nmpMinPly; Color nmpColor; - std::atomic nodes, tbHits, bestMoveChanges; + ExplosionState state; Position rootPos; StateInfo rootState; @@ -74,8 +77,7 @@ public: LowPlyHistory lowPlyHistory; CapturePieceToHistory captureHistory; ContinuationHistory continuationHistory[2][2]; - Score contempt; - int failedHighCnt; + Score trend; };