Skip to content

Commit

Permalink
Further increase SEE prune depth
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mcostalba committed Mar 16, 2013
1 parent d2eeef8 commit 0586b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ namespace {
}

// 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)
Expand Down

0 comments on commit 0586b51

Please sign in to comment.