Skip to content

Commit 6b4959e

Browse files
FauziAkramzamar
authored andcommitted
Linear Protector bonus by distance
Replacing the old Protector table with a simple linear formula which takes into account a different slope for each different piece type. The idea of this simplification of Protector is originated by Alain (Rocky) STC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 70382 W: 12859 L: 12823 D: 44700 LTC: LLR: 2.95 (-2.94,2.94) [-3.00,1.00] Total: 61554 W: 8098 L: 8031 D: 45425 Bench: 6107863 Closes #1099
1 parent ae97941 commit 6b4959e

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

src/evaluate.cpp

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,8 @@ namespace {
174174
S(-20,-12), S( 1, -8), S( 2, 10), S( 9, 10)
175175
};
176176

177-
// Protector[PieceType-2][distance] contains a protecting bonus for our king,
178-
// indexed by piece type and distance between the piece and the king.
179-
const Score Protector[][8] = {
180-
{ S(0, 0), S( 7, 9), S( 7, 1), S( 1, 5), S(-10,-4), S( -1,-4), S( -7,-3), S(-16,-10) }, // Knight
181-
{ S(0, 0), S(11, 8), S(-7,-1), S(-1,-2), S( -1,-7), S(-11,-3), S( -9,-1), S(-16, -1) }, // Bishop
182-
{ S(0, 0), S(10, 0), S(-2, 2), S(-5, 4), S( -6, 2), S(-14,-3), S( -2,-9), S(-12, -7) }, // Rook
183-
{ S(0, 0), S( 3,-5), S( 2,-5), S(-4, 0), S( -9,-6), S( -4, 7), S(-13,-7), S(-10, -7) } // Queen
184-
};
177+
// KingProtector[PieceType-2] * "distance to own king" determines a bonus for each piece.
178+
const Score KingProtector[] = {S(-3, -5), S(-4, -3), S(-3, 0), S(-1, 1) };
185179

186180
// Assorted bonuses and penalties used by evaluation
187181
const Score MinorBehindPawn = S( 16, 0);
@@ -299,8 +293,7 @@ namespace {
299293

300294
mobility[Us] += MobilityBonus[Pt-2][mob];
301295

302-
// Bonus for this piece as a king protector
303-
score += Protector[Pt-2][distance(s, pos.square<KING>(Us))];
296+
score += KingProtector[Pt-2] * distance(s, pos.square<KING>(Us));
304297

305298
if (Pt == BISHOP || Pt == KNIGHT)
306299
{

src/types.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,10 @@ enum Value : int {
184184
VALUE_MATED_IN_MAX_PLY = -VALUE_MATE + 2 * MAX_PLY,
185185

186186
PawnValueMg = 188, PawnValueEg = 248,
187-
KnightValueMg = 753, KnightValueEg = 832,
188-
BishopValueMg = 814, BishopValueEg = 890,
189-
RookValueMg = 1285, RookValueEg = 1371,
190-
QueenValueMg = 2513, QueenValueEg = 2648,
187+
KnightValueMg = 764, KnightValueEg = 848,
188+
BishopValueMg = 826, BishopValueEg = 891,
189+
RookValueMg = 1282, RookValueEg = 1373,
190+
QueenValueMg = 2526, QueenValueEg = 2646,
191191

192192
MidgameLimit = 15258, EndgameLimit = 3915
193193
};

0 commit comments

Comments
 (0)