]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Further simplify unstoppable (#938)
[stockfish] / src / search.h
index d8051ec0321fc354ff1d8b0a60eda15a2f69fc8a..c2d5d8e9295d424ae130a411436cbb99b1ff0581 100644 (file)
@@ -38,15 +38,14 @@ namespace Search {
 
 struct Stack {
   Move* pv;
+  CounterMoveStats* counterMoves;
   int ply;
   Move currentMove;
   Move excludedMove;
   Move killers[2];
   Value staticEval;
   Value history;
-  bool skipEarlyPruning;
   int moveCount;
-  CounterMoveStats* counterMoves;
 };