Skip to content

Commit 81e825a

Browse files
committed
Adjust reduction less at medium depths (Bench 4271738)
1 parent 4ec8945 commit 81e825a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

AUTHORS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Hongzhi Cheng
8989
Ivan Ivec (IIvec)
9090
Jacques B. (Timshel)
9191
Jan Ondruš (hxim)
92-
Jared Kish (Kurtbusch)
92+
Jared Kish (Kurtbusch, kurt22i)
9393
Jarrod Torriero (DU-jdto)
9494
Jean Gauthier (OuaisBla)
9595
Jean-Francois Romang (jromang)

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1177,7 +1177,7 @@ namespace {
11771177
- 4433;
11781178

11791179
// Decrease/increase reduction for moves with a good/bad history (~30 Elo)
1180-
r -= ss->statScore / 13628;
1180+
r -= ss->statScore / (13628 + 4000 * (depth > 7 && depth < 19));
11811181

11821182
// In general we want to cap the LMR depth search at newDepth, but when
11831183
// reduction is negative, we allow this move a limited search extension

0 commit comments

Comments
 (0)