]> git.sesse.net Git - stockfish/blobdiff - src/pawns.cpp
Increase weight for supported pawns
[stockfish] / src / pawns.cpp
index ca4156dac522d76eefee8919bad2d9ab5ecf2724..50eb3aa32c3871649cf242833b657ceec73ee497 100644 (file)
@@ -131,7 +131,7 @@ namespace {
         if (support | phalanx)
         {
             int v =  Connected[r] * (2 + bool(phalanx) - opposed)
-                   + 17 * popcount(support);
+                   + 21 * popcount(support);
 
             score += make_score(v, v * (r - 2) / 4);
         }