Skip to content

Commit 0586b51

Browse files
committed
Further increase SEE prune depth
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
1 parent d2eeef8 commit 0586b51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,7 +885,7 @@ namespace {
885885
}
886886

887887
// Prune moves with negative SEE at low depths
888-
if ( predictedDepth < 3 * ONE_PLY
888+
if ( predictedDepth < 4 * ONE_PLY
889889
&& pos.see_sign(move) < 0)
890890
{
891891
if (SpNode)

0 commit comments

Comments
 (0)