]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Introduce bestMove to store PV move
[stockfish] / src / search.h
index 6e91159dd30284ec144f8fbfc369e0935e082e11..a3bef714e090cb7970cdc88766006b8f8f2b7c69 100644 (file)
@@ -55,12 +55,13 @@ struct SearchStack {
   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();
 };