X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=7c5ffdc5f6adcc905a2a98adb2e5b5cd60e1e4bc;hp=325ffd1114892aa0e4f1598acc74bc877d430adf;hb=2ec626ddae9c81af6338f72296df8a1465b5e036;hpb=de269ee18e78bc59f30996be71820b7f8af09edc diff --git a/src/position.cpp b/src/position.cpp index 325ffd11..7c5ffdc5 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -45,7 +45,7 @@ namespace Zobrist { Key psq[PIECE_NB][SQUARE_NB]; Key enpassant[FILE_NB]; Key castling[CASTLING_RIGHT_NB]; - Key side; + Key side, noPawns; } namespace { @@ -145,6 +145,7 @@ void Position::init() { } Zobrist::side = rng.rand(); + Zobrist::noPawns = rng.rand(); } @@ -331,7 +332,8 @@ void Position::set_check_info(StateInfo* si) const { void Position::set_state(StateInfo* si) const { - si->key = si->pawnKey = si->materialKey = 0; + si->key = si->materialKey = 0; + si->pawnKey = Zobrist::noPawns; si->nonPawnMaterial[WHITE] = si->nonPawnMaterial[BLACK] = VALUE_ZERO; si->psq = SCORE_ZERO; si->checkersBB = attackers_to(square(sideToMove)) & pieces(~sideToMove); @@ -1079,14 +1081,20 @@ bool Position::is_draw() const { if (st->rule50 > 99 && (!checkers() || MoveList(*this).size())) return true; - StateInfo* stp = st; - for (int i = 2, e = std::min(st->rule50, st->pliesFromNull); i <= e; i += 2) - { + int e = std::min(st->rule50, st->pliesFromNull); + + if (e < 4) + return false; + + StateInfo* stp = st->previous->previous; + + do { stp = stp->previous->previous; if (stp->key == st->key) return true; // Draw at first repetition - } + + } while ((e -= 2) >= 4); return false; }