]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Correctly zero-initialize MainThread
[stockfish] / src / search.h
index 121ab8d12446e366bd965619cf23bdb1849e2807..c2d5d8e9295d424ae130a411436cbb99b1ff0581 100644 (file)
@@ -38,14 +38,14 @@ namespace Search {
 
 struct Stack {
   Move* pv;
+  CounterMoveStats* counterMoves;
   int ply;
   Move currentMove;
   Move excludedMove;
   Move killers[2];
   Value staticEval;
-  bool skipEarlyPruning;
+  Value history;
   int moveCount;
-  CounterMoveStats* counterMoves;
 };