X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=9e9cd488c3c2fa71d9c987bde2043059e4d453cc;hb=5372f81cc81d5be3040db6f2dbfff108c460baf9;hp=37c6452b9b7065799c256b24b7771f5d8b9143e4;hpb=18f2b12cd019212b9c7103cc63e3bf64a5be7c3c;p=stockfish diff --git a/src/thread.h b/src/thread.h index 37c6452b..9e9cd488 100644 --- a/src/thread.h +++ b/src/thread.h @@ -1,6 +1,6 @@ /* Stockfish, a UCI chess playing engine derived from Glaurung 2.1 - Copyright (C) 2004-2021 The Stockfish developers (see AUTHORS file) + Copyright (C) 2004-2022 The Stockfish developers (see AUTHORS file) Stockfish is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -60,24 +60,19 @@ 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, depth, previousDepth; Value rootDelta; CounterMoveHistory counterMoves; ButterflyHistory mainHistory; - LowPlyHistory lowPlyHistory; CapturePieceToHistory captureHistory; ContinuationHistory continuationHistory[2][2]; Score trend;