mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Prune all negative see moves at low depths
After 2036 games Mod- Orig: 381 - 278 - 1377 ELO +17 (+- 6.2) LOS 99% One of the biggest increases ever ! Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
committed by
Marco Costalba
parent
6ed409ecee
commit
5529706426
@@ -1287,6 +1287,17 @@ split_point_start: // At split points actual search starts from here
|
|||||||
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Prune neg. see moves at low depths
|
||||||
|
if ( predictedDepth < 2 * ONE_PLY
|
||||||
|
&& bestValue > value_mated_in(PLY_MAX)
|
||||||
|
&& pos.see_sign(move) < 0)
|
||||||
|
{
|
||||||
|
if (SpNode)
|
||||||
|
lock_grab(&(sp->lock));
|
||||||
|
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Step 13. Make the move
|
// Step 13. Make the move
|
||||||
|
|||||||
Reference in New Issue
Block a user