Update list of authors

And also fix some spaces and formatting oddities in the code.

No functional change
This commit is contained in:
Stéphane Nicolet
2018-09-03 12:46:05 +02:00
committed by Stéphane Nicolet
parent 2bfaf45455
commit 767c4ad1fc
4 changed files with 15 additions and 8 deletions

View File

@@ -32,9 +32,9 @@ namespace {
#define S(mg, eg) make_score(mg, eg)
// Pawn penalties
constexpr Score Isolated = S( 5, 15);
constexpr Score Backward = S( 9, 24);
constexpr Score Doubled = S(11, 56);
constexpr Score Backward = S( 9, 24);
constexpr Score Doubled = S(11, 56);
constexpr Score Isolated = S( 5, 15);
// Connected pawn bonus by opposed, phalanx, #support and rank
Score Connected[2][2][3][RANK_NB];