]> git.sesse.net Git - stockfish/commitdiff
Penalize undefended minors
authorGary Linscott <glinscott@gmail.com>
Wed, 21 Mar 2012 06:26:46 +0000 (07:26 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Wed, 21 Mar 2012 07:00:57 +0000 (08:00 +0100)
Even if not under attack. This seems to be good
especially on openings.

After 12112 games at 10"+0.05
Mod vs Orig 2175 - 1997 - 7940 ELO +5 (+- 3.7)

[Patch series from Gary, little edited by me]

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
src/evaluate.cpp

index ef52f7479d678b2c95ce4249fdd394a27f3f0971..2193eb6be797805b6aa46a4f510bbc9c14c4a38c 100644 (file)
@@ -679,12 +679,19 @@ Value do_evaluate(const Position& pos, Value& margin) {
     Bitboard b;
     Score score = SCORE_ZERO;
 
+    // Undefended minors get penalized even if not under attack
+    Bitboard undefended =  pos.pieces(Them)
+                         & (pos.pieces(BISHOP) | pos.pieces(KNIGHT))
+                         & ~ei.attackedBy[Them][0];
+    if (undefended)
+        score += make_score(25, 10) * popcount<Max15>(undefended);
+
     // Enemy pieces not defended by a pawn and under our attack
     Bitboard weakEnemies =  pos.pieces(Them)
                           & ~ei.attackedBy[Them][PAWN]
                           & ei.attackedBy[Us][0];
     if (!weakEnemies)
-        return SCORE_ZERO;
+        return score;
 
     // Add bonus according to type of attacked enemy piece and to the
     // type of attacking piece, from knights to queens. Kings are not