]> git.sesse.net Git - stockfish/commitdiff
Further increase SEE prune depth
authorMarco Costalba <mcostalba@gmail.com>
Sat, 16 Mar 2013 10:20:03 +0000 (11:20 +0100)
committerMarco Costalba <mcostalba@gmail.com>
Sat, 16 Mar 2013 10:20:03 +0000 (11:20 +0100)
After 16000 games at 60+0.05
ELO: 2.89 +-5.4 (95%) LOS: 96.5%
Total: 16000 W: 2775 L: 2642 D: 10583

bench: 5442365

src/search.cpp

index 0416c16cb3c89a9f7606d2ea6b4dd51173f53274..7a06dad93f94035b046c9384938ce6d8d0b983b1 100644 (file)
@@ -885,7 +885,7 @@ split_point_start: // At split points actual search starts from here
           }
 
           // Prune moves with negative SEE at low depths
-          if (   predictedDepth < 3 * ONE_PLY
+          if (   predictedDepth < 4 * ONE_PLY
               && pos.see_sign(move) < 0)
           {
               if (SpNode)