Small coding style fix for Outpost array

No functional change

Resolves #367
This commit is contained in:
joergoster
2015-06-17 15:02:02 +01:00
committed by Joona Kiiski
parent 00563be5cc
commit e8cc5c9968

View File

@@ -125,7 +125,10 @@ namespace {
}; };
// Outpost[knight/bishop][supported by pawn] // Outpost[knight/bishop][supported by pawn]
const Score Outpost[2][2] = {{S(28,7), S(42,11)}, {S(12,3), S(18,5)}}; const Score Outpost[][2] = {
{ S(28, 7), S(42,11) }, // Knights
{ S(12, 3), S(18, 5) } // Bishops
};
// Threat[defended/weak][minor/major attacking][attacked PieceType] contains // Threat[defended/weak][minor/major attacking][attacked PieceType] contains
// bonuses according to which piece type attacks which one. // bonuses according to which piece type attacks which one.