]> git.sesse.net Git - stockfish/blobdiff - src/search.h
Introduce enum SquareColor
[stockfish] / src / search.h
index 74951548df0c6ec5d08e1298dfb174fd467bee3e..00e2cd4ac38b0349f7063c3a7de48518df1f16d8 100644 (file)
@@ -51,16 +51,12 @@ struct EvalInfo;
 struct SearchStack {
   Move currentMove;
   Move mateKiller;
-  Move threatMove;
   Move excludedMove;
   Move bestMove;
   Move killers[2];
   Depth reduction;
   Value eval;
   bool skipNullMove;
-
-  void init();
-  void initKillers();
 };