Skip to content

Commit

Permalink
+/- (4,8)
Browse files Browse the repository at this point in the history
  • Loading branch information
MJZ1977 committed Mar 2, 2019
1 parent 19d71fa commit eb1b8a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/evaluate.cpp
Expand Up @@ -607,8 +607,8 @@ namespace {
// Backward pawns
safe = attackedBy[Us][ALL_PIECES] & ~attackedBy2[Them];
b = shift<Up>(pe->backward_pawns(Us));
score -= make_score( 7,20) * popcount(b & safe);
score -= make_score(11,28) * popcount(b & ~safe);
score -= make_score( 5,16) * popcount(b & safe);
score -= make_score(13,32) * popcount(b & ~safe);

if (T)
Trace::add(THREAT, Us, score);
Expand Down

0 comments on commit eb1b8a9

Please sign in to comment.