]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Introduce bestMove to store PV move
[stockfish] / src / search.h
index 3def04eb058f8bdd346cbeaf47281c9c26e3ec26..a3bef714e090cb7970cdc88766006b8f8f2b7c69 100644 (file)
@@ -54,11 +54,14 @@ struct SearchStack {
   Move currentMove;
   Move mateKiller;
   Move threatMove;
+  Move excludedMove;
+  Move bestMove;
   Move killers[KILLER_MAX];
   Depth reduction;
   Value eval;
+  bool skipNullMove;
 
-  void init(int ply);
+  void init();
   void initKillers();
 };