]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Tweak non-captures scoring
[stockfish] / src / search.h
index 3def04eb058f8bdd346cbeaf47281c9c26e3ec26..d2dc6eba58257f30364baf364fd27b5e35fd546f 100644 (file)
@@ -50,15 +50,17 @@ const int KILLER_MAX = 2;
 struct EvalInfo;
 
 struct SearchStack {
-  Move pv[PLY_MAX_PLUS_2];
   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();
 };