X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fthread.h;h=a1545072843a2dd9286c53db09d2b48c8bb8275c;hp=0a77d5b8282426702103333a2c0252d88d775728;hb=3ef0c3c34a00e6b13d6c96d8c2f0d8d7a6cc25a6;hpb=2e96c513ad6113abb6bc4fdd4962cc1f6eed3d4a diff --git a/src/thread.h b/src/thread.h index 0a77d5b8..a1545072 100644 --- a/src/thread.h +++ b/src/thread.h @@ -60,7 +60,8 @@ public: Pawns::Table pawnsTable; Material::Table materialTable; - size_t pvIdx, pvLast, shuffleExts; + size_t pvIdx, pvLast; + uint64_t ttHitAverage; int selDepth, nmpMinPly; Color nmpColor; std::atomic nodes, tbHits, bestMoveChanges; @@ -71,7 +72,7 @@ public: CounterMoveHistory counterMoves; ButterflyHistory mainHistory; CapturePieceToHistory captureHistory; - ContinuationHistory continuationHistory[2]; + ContinuationHistory continuationHistory[2][2]; Score contempt; }; @@ -87,6 +88,7 @@ struct MainThread : public Thread { double previousTimeReduction; Value previousScore; + Value iterValue[4]; int callsCnt; bool stopOnPonderhit; std::atomic_bool ponder;