X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovepick.h;h=df2012fe6fa0b67bbe2ade133744d39ab4b8b6e7;hp=10f0e8ef5c66a7ee30ddba345063b332c5de40db;hb=58c7a5c4775f7efa333bb2c921583ffba301f6b2;hpb=bbf7a94d76339837a6e8925ded1ea231d51e773d diff --git a/src/movepick.h b/src/movepick.h index 10f0e8ef..df2012fe 100644 --- a/src/movepick.h +++ b/src/movepick.h @@ -81,7 +81,6 @@ private: Move ttMove, mateKiller, killer1, killer2; Bitboard pinned, dc; MoveStack moves[256], badCaptures[64]; - static MovegenPhase PhaseTable[32]; bool pvNode; Depth depth; int phaseIndex; @@ -99,10 +98,6 @@ private: /// all pieces which can possibly give discovered check. This bitboard is /// computed by the constructor function. -inline MovePicker::MovegenPhase MovePicker::current_move_type() const { - return PhaseTable[phaseIndex]; -} - inline Bitboard MovePicker::discovered_check_candidates() const { return dc; }