mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 17:46:26 +08:00
Increase non-PV IID search depth
bench: 5146380
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user