]> git.sesse.net Git - stockfish/commitdiff
Generate Qsearch checks only at depth 0
authorJoona Kiiski <joona.kiiski@gmail.com>
Wed, 20 Nov 2013 20:39:57 +0000 (20:39 +0000)
committerMarco Costalba <mcostalba@gmail.com>
Sun, 24 Nov 2013 09:26:49 +0000 (10:26 +0100)
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

src/types.h

index bcf3da5ccb0ed34de85d878cbeea6f41a8c756ae..ff376386cac85dd6f3129bdbc5649f7945f8d3f8 100644 (file)
@@ -194,8 +194,8 @@ enum Depth {
   ONE_PLY = 2,
 
   DEPTH_ZERO          =  0 * ONE_PLY,
-  DEPTH_QS_CHECKS     = -1 * ONE_PLY,
-  DEPTH_QS_NO_CHECKS  = -2 * ONE_PLY,
+  DEPTH_QS_CHECKS     =  0 * ONE_PLY,
+  DEPTH_QS_NO_CHECKS  = -1 * ONE_PLY,
   DEPTH_QS_RECAPTURES = -5 * ONE_PLY,
 
   DEPTH_NONE = -127 * ONE_PLY