mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Small coding style fix for Outpost array
No functional change Resolves #367
This commit is contained in:
parent
00563be5cc
commit
e8cc5c9968
1 changed files with 4 additions and 1 deletions
|
@ -125,7 +125,10 @@ namespace {
|
|||
};
|
||||
|
||||
// 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
|
||||
// bonuses according to which piece type attacks which one.
|
||||
|
|
Loading…
Add table
Reference in a new issue