X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fevaluate.cpp;h=e17a3e340b939206662d259d8f58a42259585708;hp=c8124eee06f3a3ac6f51b9305a97a989be47959d;hb=dc8c6ea2d149cfe9ce17fc9652b9ff90585c7fd8;hpb=3922ac2fe48806b75580892d48b9ddc545531402 diff --git a/src/evaluate.cpp b/src/evaluate.cpp index c8124eee..e17a3e34 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -150,8 +150,7 @@ namespace { #undef S - // CLOP now likes 85, 31 - try next - Score BishopPinBonus = make_score(66, 11); + const Score BishopPinBonus = make_score(66, 11); // Bonus for having the side to move (modified by Joona Kiiski) const Score Tempo = make_score(24, 11); @@ -309,8 +308,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"]); }