1
0
Fork 0

Increase non-PV IID search depth

bench: 5146380
sf_3_base
Marco Costalba 2013-03-22 20:57:31 +01:00
parent 077e32efc9
commit 81e9cf043a
1 changed files with 1 additions and 1 deletions

View File

@ -745,7 +745,7 @@ namespace {
&& ttMove == MOVE_NONE
&& (PvNode || (!inCheck && ss->staticEval + Value(256) >= beta)))
{
Depth d = (PvNode ? depth - 2 * ONE_PLY : depth / 2);
Depth d = (PvNode ? depth - 2 * ONE_PLY : depth - 4 * ONE_PLY);
ss->skipNullMove = true;
search<PvNode ? PV : NonPV>(pos, ss, alpha, beta, d);