X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=5f0b2c3ed9cb3d86397ec8c2de309cacc033bbf3;hb=e533b620caf72b05969dd756355cbaeb6ae5f7a6;hp=a6b0b5a0bc95577924856325ad70330d369c3661;hpb=ad926d34c0105d523bfa5cb92cbcf9f337d54c08;p=stockfish diff --git a/src/thread.h b/src/thread.h index a6b0b5a0..5f0b2c3e 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,26 +60,21 @@ public: Pawns::Table pawnsTable; Material::Table materialTable; size_t pvIdx, pvLast; - RunningAverage doubleExtensionAverage[COLOR_NB]; - uint64_t nodesLastExplosive; - uint64_t nodesLastNormal; + RunningAverage complexityAverage; std::atomic nodes, tbHits, bestMoveChanges; - Value bestValue; int selDepth, nmpMinPly; Color nmpColor; - ExplosionState state; - Value optimism[COLOR_NB]; + Value bestValue, optimism[COLOR_NB]; Position rootPos; StateInfo rootState; Search::RootMoves rootMoves; - Depth rootDepth, completedDepth; + Depth rootDepth, completedDepth, previousDepth; Value rootDelta; CounterMoveHistory counterMoves; ButterflyHistory mainHistory; CapturePieceToHistory captureHistory; ContinuationHistory continuationHistory[2][2]; - Score trend; };