X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmaterial.cpp;h=8d0b7f3a59097c7dfc8bc3b8027568b8b50eed9a;hp=995a5b541e185e6a0e772e02fb879ba6c832e09a;hb=7f142d68179919a507204e7980fff4f79648dbbc;hpb=490f67a3f89449e243c3e85feb13679f388d9e22 diff --git a/src/material.cpp b/src/material.cpp index 995a5b54..8d0b7f3a 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -113,7 +113,7 @@ namespace { + RedundantQueen * pieceCount[Us][QUEEN]; // Second-degree polynomial material imbalance by Tord Romstad - for (pt1 = NO_PIECE_TYPE; pt1 <= QUEEN; pt1++) + for (pt1 = NO_PIECE_TYPE; pt1 <= QUEEN; ++pt1) { pc = pieceCount[Us][pt1]; if (!pc) @@ -121,7 +121,7 @@ namespace { v = LinearCoefficients[pt1]; - for (pt2 = NO_PIECE_TYPE; pt2 <= pt1; pt2++) + for (pt2 = NO_PIECE_TYPE; pt2 <= pt1; ++pt2) v += QuadraticCoefficientsSameColor[pt1][pt2] * pieceCount[Us][pt2] + QuadraticCoefficientsOppositeColor[pt1][pt2] * pieceCount[Them][pt2]; @@ -173,18 +173,10 @@ Entry* probe(const Position& pos, Table& entries, Endgames& endgames) { 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)) { + // 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))); @@ -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(WHITE) && npm_w - npm_b <= BishopValueMg) { e->factor[WHITE] = (uint8_t)