X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.cpp;h=8c84ac299777e7ff7a33f91cb2f9e439de783686;hb=af0c13ba6ad5d51432a8f4531d53c7309484df6b;hp=c9b2d31b0d42f1e5f61b2ee63b3e8ee65c69da8d;hpb=7bdb8c9c5c82629f50252151afd542316665c505;p=stockfish diff --git a/src/evaluate.cpp b/src/evaluate.cpp index c9b2d31b..8c84ac29 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -204,6 +204,8 @@ namespace { const int BishopCheck = 2; const int KnightCheck = 3; + const int UnsupportedPinnedPiece = 2; + // KingDanger[Color][attackUnits] contains the actual king danger weighted // scores, indexed by color and by a calculated integer number. Score KingDanger[COLOR_NB][128]; @@ -494,16 +496,16 @@ Value do_evaluate(const Position& pos) { if (ei.attackedBy[Them][PAWN] & s) score -= ThreatenedByPawn[Pt]; - // Penalty for bishop with same coloured pawns - if (Pt == BISHOP) - score -= BishopPawns * ei.pi->pawns_on_same_color_squares(Us, s); - - // Penalty for knight when there are few enemy pawns - if (Pt == KNIGHT) - score -= KnightPawns * std::max(5 - pos.count(Them), 0); - if (Pt == BISHOP || Pt == KNIGHT) { + // Penalty for bishop with same colored pawns + if (Pt == BISHOP) + score -= BishopPawns * ei.pi->pawns_on_same_color_squares(Us, s); + + // Penalty for knight when there are few enemy pawns + if (Pt == KNIGHT) + score -= KnightPawns * std::max(5 - pos.count(Them), 0); + // Bishop and knight outposts squares if (!(pos.pieces(Them, PAWN) & pawn_attack_span(Us, s))) score += evaluate_outposts(pos, ei, s); @@ -693,6 +695,10 @@ Value do_evaluate(const Position& pos) { if (b) attackUnits += KnightCheck * popcount(b); + // Penalty for pinned pieces not defended by a pawn + if (ei.pinnedPieces[Us] & ~ei.attackedBy[Us][PAWN]) + attackUnits += UnsupportedPinnedPiece; + // To index KingDanger[] attackUnits must be in [0, 99] range attackUnits = std::min(99, std::max(0, attackUnits)); @@ -961,8 +967,8 @@ Value do_evaluate(const Position& pos) { switch (idx) { case PST: case IMBALANCE: case PAWN: case TOTAL: ss << std::setw(20) << name << " | --- --- | --- --- | " - << std::setw(6) << to_cp(mg_value(wScore)) << " " - << std::setw(6) << to_cp(eg_value(wScore)) << " \n"; + << std::setw(6) << to_cp(mg_value(wScore - bScore)) << " " + << std::setw(6) << to_cp(eg_value(wScore - bScore)) << " \n"; break; default: ss << std::setw(20) << name << " | " << std::noshowpos