X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fposition.h;h=af1e981cb3370af138d930d290b2d6d41e98db17;hb=4c3a000211bea046dd9506bae748576ecf6368fa;hp=496b7b9d00fe4e763da4f8fcff4bc69448da87ec;hpb=9884573561c6ad58f50fb2fd96a54fd192c5aedf;p=stockfish diff --git a/src/position.h b/src/position.h index 496b7b9d..af1e981c 100644 --- a/src/position.h +++ b/src/position.h @@ -186,7 +186,6 @@ public: // Properties of moves bool pl_move_is_legal(Move m, Bitboard pinned) const; - bool move_is_pl_full(const Move m) const; bool move_is_pl(const Move m) const; bool move_gives_check(Move m) const; bool move_gives_check(Move m, const CheckInfo& ci) const; @@ -260,6 +259,7 @@ private: void do_allow_oo(Color c); void do_allow_ooo(Color c); bool set_castling_rights(char token); + bool move_is_pl_slow(const Move m) const; // Helper functions for doing and undoing moves void do_capture_move(Key& key, PieceType capture, Color them, Square to, bool ep);