]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Convert handling of tt moves and killers to standard form
[stockfish] / src / movepick.h
index ced0a051654685cbe48fb2c99662d7604de4d38f..b31d9dd2d48dafbdc3fc1f985e58189f645f5404 100644 (file)
@@ -79,12 +79,12 @@ private:
 
   const Position& pos;
   const History& H;
-  Move ttMoves[2], killers[2];
-  const MovegenPhaseT* phasePtr;
-  int phase, movesPicked, numOfBadCaptures;
+  MoveStack ttMoves[2], killers[2];
   bool finished;
-  Bitboard dc, pinned;
+  int numOfBadCaptures, phase;
+  const MovegenPhaseT* phasePtr;
   MoveStack *curMove, *lastMove;
+  Bitboard dc, pinned;
   MoveStack moves[256], badCaptures[64];
 };