X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=147d5d0b0a666915031f687a82e0d858f7aad5ce;hp=b31d9dd2d48dafbdc3fc1f985e58189f645f5404;hb=e9de96f0e417dc706882b645d14dbf41e7ccc467;hpb=9ab84a816539ade23868f0383e39634e6ab88df5 diff --git a/src/movepick.h b/src/movepick.h index b31d9dd2..147d5d0b 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -38,7 +38,6 @@ struct SearchStack; enum MovegenPhase { - PH_NULL_MOVE, // Null move PH_TT_MOVES, // Transposition table move and mate killer PH_GOOD_CAPTURES, // Queen promotions and captures with SEE values >= 0 PH_KILLERS, // Killer moves from the current ply @@ -65,7 +64,7 @@ class MovePicker { MovePicker& operator=(const MovePicker&); // silence a warning under MSVC public: - MovePicker(const Position& p, Move ttm, Depth d, const History& h, SearchStack* ss = NULL, bool useNullMove = false); + 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;