]> git.sesse.net Git - stockfish/commitdiff
Revert "Move draw by material check"
authorMarco Costalba <mcostalba@gmail.com>
Thu, 12 Sep 2013 06:41:28 +0000 (08:41 +0200)
committerMarco Costalba <mcostalba@gmail.com>
Thu, 12 Sep 2013 06:44:11 +0000 (08:44 +0200)
Possible regression

bench: 4554579

src/endgame.h
src/material.cpp
src/position.cpp

index 5ea40bbf91b995070a7bf804b52ecc8c0fec548e..49f39990ba513e6ca8584df55fa9ebadddfe6d9d 100644 (file)
@@ -43,7 +43,7 @@ enum EndgameType {
   KQKP,  // KQ vs KP
   KQKR,  // KQ vs KR
   KBBKN, // KBB vs KN
   KQKP,  // KQ vs KP
   KQKR,  // KQ vs KR
   KBBKN, // KBB vs KN
-  KmmKm, // K and one or two minors vs K and zero or one minor
+  KmmKm, // K and two minors vs K and one or two minors
 
 
   // Scaling functions
 
 
   // Scaling functions
index 995a5b541e185e6a0e772e02fb879ba6c832e09a..0f1e19b9ee4a954f69bb84844e9227110f21709a 100644 (file)
@@ -173,18 +173,10 @@ Entry* probe(const Position& pos, Table& entries, Endgames& endgames) {
       return e;
   }
 
       return e;
   }
 
-  // Draw by insufficient material (trivial draws like KK, KBK and KNK)
-  if (   !pos.pieces(PAWN)
-      &&  pos.non_pawn_material(WHITE) + pos.non_pawn_material(BLACK) <= BishopValueMg)
-  {
-      e->evaluationFunction = &EvaluateKmmKm[pos.side_to_move()];
-      return e;
-  }
-
-  // Minor piece endgame with at least one minor piece per side and
-  // no pawns. Note that the case KmmK is already handled by KXK.
   if (!pos.pieces(PAWN) && !pos.pieces(ROOK) && !pos.pieces(QUEEN))
   {
   if (!pos.pieces(PAWN) && !pos.pieces(ROOK) && !pos.pieces(QUEEN))
   {
+      // Minor piece endgame with at least one minor piece per side and
+      // no pawns. Note that the case KmmK is already handled by KXK.
       assert((pos.pieces(WHITE, KNIGHT) | pos.pieces(WHITE, BISHOP)));
       assert((pos.pieces(BLACK, KNIGHT) | pos.pieces(BLACK, BISHOP)));
 
       assert((pos.pieces(WHITE, KNIGHT) | pos.pieces(WHITE, BISHOP)));
       assert((pos.pieces(BLACK, KNIGHT) | pos.pieces(BLACK, BISHOP)));
 
@@ -248,7 +240,8 @@ Entry* probe(const Position& pos, Table& entries, Endgames& endgames) {
       }
   }
 
       }
   }
 
-  // No pawns makes it difficult to win, even with a material advantage
+  // No pawns makes it difficult to win, even with a material advantage. This
+  // catches some trivial draws like KK, KBK and KNK
   if (!pos.count<PAWN>(WHITE) && npm_w - npm_b <= BishopValueMg)
   {
       e->factor[WHITE] = (uint8_t)
   if (!pos.count<PAWN>(WHITE) && npm_w - npm_b <= BishopValueMg)
   {
       e->factor[WHITE] = (uint8_t)
index 0b687a8d1496e797e22983b36ca7b0819fd92ea8..fd3f8035f30251c18211e633b835fc8fb49fc410 100644 (file)
@@ -1255,11 +1255,17 @@ Value Position::compute_non_pawn_material(Color c) const {
 }
 
 
 }
 
 
-/// Position::is_draw() tests whether the position is drawn by 50 moves rule
-/// or by repetition. It does not detect stalemates.
-
+/// 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.
 bool Position::is_draw() const {
 
 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 && (!checkers() || MoveList<LEGAL>(*this).size()))
       return true;
 
   if (st->rule50 > 99 && (!checkers() || MoveList<LEGAL>(*this).size()))
       return true;