mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 16:47:37 +00: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:
+1
-2
@@ -860,8 +860,7 @@ split_point_start: // At split points actual search starts from here
|
|||||||
if ( !captureOrPromotion
|
if ( !captureOrPromotion
|
||||||
&& !inCheck
|
&& !inCheck
|
||||||
&& !dangerous
|
&& !dangerous
|
||||||
&& move != ttMove
|
&& move != ttMove)
|
||||||
&& alpha > VALUE_MATED_IN_MAX_PLY)
|
|
||||||
{
|
{
|
||||||
// Move count based pruning
|
// Move count based pruning
|
||||||
if ( !PvNode
|
if ( !PvNode
|
||||||
|
|||||||
Reference in New Issue
Block a user