From: Gary Linscott Date: Sun, 5 Feb 2012 15:24:53 +0000 (-0500) Subject: Detect stalemate in KXK endgames X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=0347339970b68b998c7202e22c01560850dcd13e Detect stalemate in KXK endgames Also, handle cases where there are 2 bishops of the same color. --- diff --git a/src/endgame.cpp b/src/endgame.cpp index d458cd66..d7cb2b3c 100644 --- a/src/endgame.cpp +++ b/src/endgame.cpp @@ -82,6 +82,21 @@ namespace { template void delete_endgame(const typename M::value_type& p) { delete p.second; } + // Fast stalemate detection with lone king + bool is_kxk_stalemate(const Position &pos, const Color c) { + if ( pos.side_to_move() == c && + !pos.in_check()) { + const Square from = pos.king_square(c); + Bitboard b = pos.attacks_from(from); + while (b) { + // Assume there are no pinned pieces, as it is a lone king + if (pos.pl_move_is_legal(make_move(from, pop_1st_bit(&b)), 0)) + return false; + } + return true; + } + return false; + } } // namespace @@ -132,6 +147,10 @@ Value Endgame::operator()(const Position& pos) const { assert(pos.non_pawn_material(weakerSide) == VALUE_ZERO); assert(pos.piece_count(weakerSide, PAWN) == VALUE_ZERO); + if (is_kxk_stalemate(pos, weakerSide)) { + return VALUE_DRAW; + } + Square winnerKSq = pos.king_square(strongerSide); Square loserKSq = pos.king_square(weakerSide); @@ -142,9 +161,9 @@ Value Endgame::operator()(const Position& pos) const { if ( pos.piece_count(strongerSide, QUEEN) || pos.piece_count(strongerSide, ROOK) - || pos.piece_count(strongerSide, BISHOP) > 1) - // TODO: check for two equal-colored bishops! - result += VALUE_KNOWN_WIN; + || pos.both_color_bishops(strongerSide)) { + result += VALUE_KNOWN_WIN; + } return strongerSide == pos.side_to_move() ? result : -result; } diff --git a/src/position.h b/src/position.h index bcbfc850..8229e71b 100644 --- a/src/position.h +++ b/src/position.h @@ -189,6 +189,7 @@ public: template bool is_draw() const; int startpos_ply_counter() const; bool opposite_colored_bishops() const; + bool both_color_bishops(Color c) const; bool has_pawn_on_7th(Color c) const; bool is_chess960() const; @@ -432,6 +433,12 @@ inline bool Position::opposite_colored_bishops() const { && opposite_colors(pieceList[WHITE][BISHOP][0], pieceList[BLACK][BISHOP][0]); } +inline bool Position::both_color_bishops(Color c) const { + // Assumes that there are only two bishops + return pieceCount[c][BISHOP] >= 2 && + opposite_colors(pieceList[c][BISHOP][0], pieceList[c][BISHOP][1]); +} + inline bool Position::has_pawn_on_7th(Color c) const { return pieces(PAWN, c) & rank_bb(relative_rank(c, RANK_7)); }