]> git.sesse.net Git - stockfish/blobdiff - src/thread.h
Revert "Fix a race on Limits::ponder"
[stockfish] / src / thread.h
index 77517b07fe85aeb2212bd048a7c792c12c6a32eb..c1b635b7ea4db61dfca33ed0ee3423e3eeefb862 100644 (file)
@@ -60,16 +60,16 @@ public:
   Material::Table materialTable;
   Endgames endgames;
   size_t idx, PVIdx;
-  int maxPly;
+  int selDepth;
   std::atomic<uint64_t> nodes, tbHits;
 
   Position rootPos;
   Search::RootMoves rootMoves;
   Depth rootDepth;
   Depth completedDepth;
-  CounterMoveStat counterMoves;
-  ButterflyHistory history;
-  CounterMoveHistoryStat counterMoveHistory;
+  CounterMoveHistory counterMoves;
+  ButterflyHistory mainHistory;
+  ContinuationHistory contHistory;
 };