Skip to content

Commit d4cb80b

Browse files
committed
Tweak the connected[] array value for pawns on rank 5
A recent tuning session by Jerry Donald Watson suggested that the value for the pawns on the fifth rank in the connected[] array were a little bit too high in master. We lower here this value from 75 to 65. STC: LLR: 2.95 (-2.94,2.94) [0.00,4.00] Total: 27399 W: 5646 L: 5384 D: 16369 http://tests.stockfishchess.org/tests/view/5aea17c50ebc5902a1bed396 LTC: LLR: 3.66 (-2.94,2.94) [0.00,4.00] Total: 95590 W: 14529 L: 14062 D: 66999 http://tests.stockfishchess.org/tests/view/5aea34a40ebc5902a104ebe5 Closes #1580 Bench: 5186783
1 parent 06e0134 commit d4cb80b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pawns.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ namespace Pawns {
179179

180180
void init() {
181181

182-
static constexpr int Seed[RANK_NB] = { 0, 13, 24, 18, 76, 100, 175, 330 };
182+
static constexpr int Seed[RANK_NB] = { 0, 13, 24, 18, 65, 100, 175, 330 };
183183

184184
for (int opposed = 0; opposed <= 1; ++opposed)
185185
for (int phalanx = 0; phalanx <= 1; ++phalanx)

0 commit comments

Comments
 (0)