X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=920a97573029fedb093e0ba981e5c188b620df36;hp=94a0e5f9548afb864361ae826f2cef914703a302;hb=339bb8a524a0a6af093b383da9f61b31504be9fe;hpb=c1b60269a26b2ba1c8882b8f382f0e3e435c1962 diff --git a/src/movepick.h b/src/movepick.h index 94a0e5f9..920a9757 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -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;