]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Tweak non-captures scoring
[stockfish] / src / search.h
index 73a1dcf0d508410a3116103b7d3314b2db9fc310..d2dc6eba58257f30364baf364fd27b5e35fd546f 100644 (file)
@@ -50,16 +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();
 };