X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fmovepick.h;h=6c73629916a01afdbb24a29f25f1f352f80ca9e3;hb=d9b920acfbc5c8fdc362111d00c962ad654595e6;hp=46cf69ddce30ec4f51f51b83f92b04d740d0e4e5;hpb=f6d245291664e1a521b3810051365c48c82bac78;p=stockfish diff --git a/src/movepick.h b/src/movepick.h index 46cf69dd..6c736299 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -37,21 +37,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 - PH_NONCAPTURES, // Non-captures and underpromotions - PH_BAD_CAPTURES, // Queen promotions and captures with SEE values < 0 - PH_EVASIONS, // Check evasions - PH_QCAPTURES, // Captures in quiescence search - PH_QCHECKS, // Non-capture checks in quiescence search - PH_STOP -}; - -typedef uint8_t MovegenPhaseT; - /// MovePicker is a class which is used to pick one legal move at a time from /// the current position. It is initialized with a Position object and a few /// moves we have reason to believe are good. The most important method is @@ -65,24 +50,25 @@ 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; + int number_of_evasions() const; Bitboard discovered_check_candidates() const; private: void score_captures(); void score_noncaptures(); void score_evasions(); - Move pick_move_from_list(); + void go_next_phase(); const Position& pos; const History& H; - Move ttMoves[2], killers[2]; - const MovegenPhaseT* phasePtr; - int movesPicked, numOfMoves, numOfBadCaptures; + MoveStack ttMoves[2], killers[2]; bool finished; + int phase; + const uint8_t* phasePtr; + MoveStack *curMove, *lastMove, *lastBadCapture; Bitboard dc, pinned; MoveStack moves[256], badCaptures[64]; }; @@ -92,13 +78,14 @@ private: //// Inline functions //// -/// MovePicker::number_of_moves() simply returns the numOfMoves member -/// variable. It is intended to be used in positions where the side to move -/// is in check, for detecting checkmates or situations where there is only -/// a single reply to check. +/// MovePicker::number_of_evasions() simply returns the number of moves in +/// evasions phase. It is intended to be used in positions where the side to +/// move is in check, for detecting checkmates or situations where there is +/// only a single reply to check. +/// WARNING: It works as long as PH_EVASIONS is the _only_ phase for evasions. -inline int MovePicker::number_of_moves() const { - return numOfMoves; +inline int MovePicker::number_of_evasions() const { + return int(lastMove - moves); } /// MovePicker::discovered_check_candidates() returns a bitboard containing