X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fevaluate.cpp;h=2cb9979d295a863900c13bca115404251e0cafd9;hb=d570260a28c6229ca75078dc616011e994fe6378;hp=ed1d5cb8b08ba7bf37f3632fbc266e7e1fc678b7;hpb=17b71fe51da9d0803c7cfe9fa5df981c4a8fcb8f;p=stockfish diff --git a/src/evaluate.cpp b/src/evaluate.cpp index ed1d5cb8..2cb9979d 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -150,7 +150,8 @@ namespace { #undef S - Score BishopPinBonus = make_score(15, 25); + // CLOP now likes 85, 31 - try next + const Score BishopPinBonus = make_score(34, 17); // Bonus for having the side to move (modified by Joona Kiiski) const Score Tempo = make_score(24, 11); @@ -308,8 +309,6 @@ namespace Eval { KingDangerTable[0][i] = apply_weight(make_score(t, 0), make_score(KingDanger[0], 0)); KingDangerTable[1][i] = apply_weight(make_score(t, 0), make_score(KingDanger[1], 0)); } - - BishopPinBonus = make_score(Options["pin_open"], Options["pin_end"]); }