]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Retire enoughMaterial + lower trapped rook threshold
[stockfish] / src / movepick.h
index 8997c93872c46766bf137f1d4cc73cd46194f1a9..57fe1c0ec304a76fd2542e97876c811eac92b6d2 100644 (file)
@@ -86,8 +86,7 @@ class MovePicker {
 public:
   MovePicker(const Position&, Move, Depth, const HistoryStats&, Square);
   MovePicker(const Position&, Move, const HistoryStats&, PieceType);
-  MovePicker(const Position&, Move, Depth, const HistoryStats&,
-             const CountermovesStats&, Search::Stack*, Value);
+  MovePicker(const Position&, Move, Depth, const HistoryStats&, Move*, Search::Stack*, Value);
 
   template<bool SpNode> Move next_move();
 
@@ -98,6 +97,7 @@ private:
   const Position& pos;
   const HistoryStats& history;
   Search::Stack* ss;
+  Move* countermoves;
   Depth depth;
   Move ttMove;
   MoveStack killers[4];