mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-17 23:56:23 +08:00
No pruning at low plies.
This makes those very early depths a bit more reliable.
Thanks, joergoster!
be7f37187b
This commit is contained in:
@@ -950,6 +950,7 @@ moves_loop: // When in check, search starts from here
|
|||||||
|
|
||||||
// Step 14. Pruning at shallow depth (~170 Elo)
|
// Step 14. Pruning at shallow depth (~170 Elo)
|
||||||
if ( !rootNode
|
if ( !rootNode
|
||||||
|
&& thisThread->rootDepth > 4 * ONE_PLY
|
||||||
&& pos.non_pawn_material(us)
|
&& pos.non_pawn_material(us)
|
||||||
&& bestValue > VALUE_MATED_IN_MAX_PLY)
|
&& bestValue > VALUE_MATED_IN_MAX_PLY)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user