diff --git a/src/evaluate.cpp b/src/evaluate.cpp index 26fd20bb..3f18d587 100644 --- a/src/evaluate.cpp +++ b/src/evaluate.cpp @@ -770,9 +770,9 @@ namespace { && (pos.pieces(PAWN) & KingSide); // Compute the initiative bonus for the attacking side - int complexity = 8 * outflanking - + 8 * pe->pawn_asymmetry() + int complexity = 8 * pe->pawn_asymmetry() + 12 * pos.count() + + 12 * outflanking + 16 * pawnsOnBothFlanks + 48 * !pos.non_pawn_material() -136 ;