X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=40ea30f79f520d6d74ff0fa4de9cfd64e2b20e3b;hp=feaeee22c606309a474c917bad77bfcc310d9b5d;hb=c594b989c0a7ff37002a4720e5bb667da70bb476;hpb=71f37ac1aac36386ba5fb8842e1bac8de84601cb diff --git a/src/position.cpp b/src/position.cpp index feaeee22..40ea30f7 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -1467,39 +1467,31 @@ Value Position::compute_non_pawn_material(Color c) const { /// Position::is_draw() tests whether the position is drawn by material, /// repetition, or the 50 moves rule. It does not detect stalemates, this /// must be done by the search. -template +template bool Position::is_draw() const { - // Draw by material? if ( !pieces(PAWN) && (non_pawn_material(WHITE) + non_pawn_material(BLACK) <= BishopValueMg)) return true; - // Draw by the 50 moves rule? if (st->rule50 > 99 && (!in_check() || MoveList(*this).size())) return true; - // Draw by repetition? - if (!SkipRepetition) + if (CheckRepetition) { - int i = 4, e = std::min(st->rule50, st->pliesFromNull), rep_count=0; + int i = 4, e = std::min(st->rule50, st->pliesFromNull); if (i <= e) { StateInfo* stp = st->previous->previous; - do { + for (int cnt = 0; i <= e; i += 2) + { stp = stp->previous->previous; - if (stp->key == st->key) - { - if(SkipThreeFoldCheck) return true; - else if(++rep_count>=2) return true; - } - - i +=2; - - } while (i <= e); + if (stp->key == st->key && (!CheckThreeFold || ++cnt >= 2)) + return true; + } } } @@ -1507,8 +1499,8 @@ bool Position::is_draw() const { } // Explicit template instantiations -template bool Position::is_draw() const; -template bool Position::is_draw() const; +template bool Position::is_draw() const; +template bool Position::is_draw() const; template bool Position::is_draw() const;