]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Revert "Fix a race on Limits::ponder"
[stockfish] / src / search.h
index 7c46980b2d36f07808e1f7acd8b02fbdb46062ac..477570e3919e3d40c7d0092e44a61630a4357e61 100644 (file)
@@ -37,7 +37,7 @@ namespace Search {
 
 struct Stack {
   Move* pv;
-  PieceToHistory* history;
+  PieceToHistory* contHistory;
   int ply;
   Move currentMove;
   Move excludedMove;
@@ -64,6 +64,7 @@ struct RootMove {
 
   Value score = -VALUE_INFINITE;
   Value previousScore = -VALUE_INFINITE;
+  int selDepth = 0;
   std::vector<Move> pv;
 };