Skip to content

Commit 3ede7da

Browse files
zamarmcostalba
authored andcommitted
Generate Qsearch checks only at depth 0
An old idea retested at SPRT(0, 3) with 60+0.05 TC: LLR: 2.95 (-2.94,2.94) [0.00,3.00] Total: 98872 W: 15549 L: 15123 D: 68200 This is a very small elo increase patch so it really stresses the limits of fishtest. bench: 8596156
1 parent dbd6156 commit 3ede7da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/types.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,8 @@ enum Depth {
194194
ONE_PLY = 2,
195195

196196
DEPTH_ZERO = 0 * ONE_PLY,
197-
DEPTH_QS_CHECKS = -1 * ONE_PLY,
198-
DEPTH_QS_NO_CHECKS = -2 * ONE_PLY,
197+
DEPTH_QS_CHECKS = 0 * ONE_PLY,
198+
DEPTH_QS_NO_CHECKS = -1 * ONE_PLY,
199199
DEPTH_QS_RECAPTURES = -5 * ONE_PLY,
200200

201201
DEPTH_NONE = -127 * ONE_PLY

0 commit comments

Comments
 (0)