]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Simplify generate_evasions()
[stockfish] / src / movepick.h
index 5fff409259c1cfd8d1544b277c06c85715ede770..2c861c71db873377800dca30e2e3d82096739dd2 100644 (file)
@@ -83,14 +83,14 @@ private:
   int find_best_index(Bitboard* squares, int values[]);
 
   const Position& pos;
-  Move ttMove, mateKiller, killer1, killer2, threatMove;
+  Move ttMove, mateKiller, killer1, killer2;
   Bitboard pinned, dc;
   MoveStack moves[256], badCaptures[64];
   bool pvNode;
   Depth depth;
   int phaseIndex;
   int numOfMoves, numOfBadCaptures;
-  int movesPicked, badCapturesPicked;
+  int movesPicked;
   bool finished;
 };