]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Speed up polynomial material imbalance loop
[stockfish] / src / movepick.h
index 94a0e5f9548afb864361ae826f2cef914703a302..920a97573029fedb093e0ba981e5c188b620df36 100644 (file)
@@ -65,7 +65,7 @@ public:
     PH_STOP
   };
 
-  MovePicker(const Position& p, bool pvnode, Move ttm, Depth d, const History& h, SearchStack* ss = NULL);
+  MovePicker(const Position& p, Move ttm, Depth d, const History& h, SearchStack* ss = NULL);
   Move get_next_move();
   Move get_next_move(Lock& lock);
   int number_of_moves() const;
@@ -77,7 +77,6 @@ private:
   void score_captures();
   void score_noncaptures();
   void score_evasions();
-  void score_qcaptures();
   Move pick_move_from_list();
 
   const Position& pos;
@@ -85,8 +84,6 @@ private:
   Move ttMove, mateKiller, killer1, killer2;
   Bitboard pinned, dc;
   MoveStack moves[256], badCaptures[64];
-  bool pvNode;
-  Depth depth;
   int phaseIndex;
   int numOfMoves, numOfBadCaptures;
   int movesPicked;