]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Do not sort negative non captures at low depth
[stockfish] / src / movepick.h
index 27c33047f7728839fd6c9743126122db7f45c9c3..d0ced0474ffd901e6b34275acf520147001fe506 100644 (file)
@@ -53,11 +53,12 @@ private:
 
   const Position& pos;
   const History& H;
+  Depth depth;
   Move ttMove;
   MoveStack killers[2];
   int captureThreshold, phase;
   const uint8_t* phasePtr;
-  MoveStack *curMove, *lastMove, *lastGoodNonCapture, *badCaptures;
+  MoveStack *curMove, *lastMove, *lastNonCapture, *badCaptures;
   MoveStack moves[MAX_MOVES];
 };