X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fthread.h;h=37c6452b9b7065799c256b24b7771f5d8b9143e4;hb=b82d93ece484f833c994b40d9eddd959ba20ef92;hp=2475d2ec2545101bfbb887c475e89747f5ceab6f;hpb=73018a03375b4b72ee482eb5a4a2152d7e4f0aac;p=stockfish diff --git a/src/thread.h b/src/thread.h index 2475d2ec..37c6452b 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,19 +60,21 @@ public: Pawns::Table pawnsTable; Material::Table materialTable; size_t pvIdx, pvLast; - RunningAverage ttHitAverage; RunningAverage doubleExtensionAverage[COLOR_NB]; uint64_t nodesLastExplosive; uint64_t nodesLastNormal; std::atomic nodes, tbHits, bestMoveChanges; + Value bestValue; int selDepth, nmpMinPly; Color nmpColor; ExplosionState state; + Value optimism[COLOR_NB]; Position rootPos; StateInfo rootState; Search::RootMoves rootMoves; Depth rootDepth, completedDepth; + Value rootDelta; CounterMoveHistory counterMoves; ButterflyHistory mainHistory; LowPlyHistory lowPlyHistory; @@ -93,6 +95,7 @@ struct MainThread : public Thread { double previousTimeReduction; Value bestPreviousScore; + Value bestPreviousAverageScore; Value iterValue[4]; int callsCnt; bool stopOnPonderhit;