mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-21 09:37:16 +08:00
Remove pruning condition on alpha
Further simplifying on Lucas's idea, seems reliable in tests: ELO: 2.15 +-7 (95%) LOS: 84.9% Total: 9999 W: 1831 L: 1769 D: 6399
This commit is contained in:
@@ -860,8 +860,7 @@ split_point_start: // At split points actual search starts from here
|
||||
if ( !captureOrPromotion
|
||||
&& !inCheck
|
||||
&& !dangerous
|
||||
&& move != ttMove
|
||||
&& alpha > VALUE_MATED_IN_MAX_PLY)
|
||||
&& move != ttMove)
|
||||
{
|
||||
// Move count based pruning
|
||||
if ( !PvNode
|
||||
|
||||
Reference in New Issue
Block a user