Skip to content

Commit

Permalink
Doubled and supported pawns
Browse files Browse the repository at this point in the history
Do not give the doubled pawn penalty when the frontmost pawn is
supported, for instance f2-g2-g3

STC:
LLR: 2.95 (-2.94,2.94) [0.00,5.00]
Total: 55927 W: 10418 L: 10052 D: 35457
http://tests.stockfishchess.org/tests/view/58eb9fc20ebc59035df33858

LTC:
LLR: 2.96 (-2.94,2.94) [0.00,5.00]
Total: 32078 W: 4257 L: 4035 D: 23786
http://tests.stockfishchess.org/tests/view/58ec48420ebc59035df3388b

Bench: 5995472

Closes #1062
  • Loading branch information
snicolet authored and zamar committed Apr 16, 2017
1 parent b258b4f commit 1454831
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pawns.cpp
Expand Up @@ -131,7 +131,7 @@ namespace {
stoppers = theirPawns & passed_pawn_mask(Us, s);
lever = theirPawns & pawnAttacksBB[s];
leverPush = theirPawns & pawnAttacksBB[s + Up];
doubled = ourPawns & (s + Up);
doubled = ourPawns & (s - Up);
neighbours = ourPawns & adjacent_files_bb(f);
phalanx = neighbours & rank_bb(s);
supported = neighbours & rank_bb(s - Up);
Expand Down Expand Up @@ -177,8 +177,8 @@ namespace {
if (connected)
score += Connected[opposed][!!phalanx][more_than_one(supported)][relative_rank(Us, s)];

if (doubled)
score -= Doubled;
if (doubled && !supported)
score -= Doubled;

if (lever)
score += Lever[relative_rank(Us, s)];
Expand Down

0 comments on commit 1454831

Please sign in to comment.