mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Remove an useless condition in equal SEE pruning
Because we are never in check there and evaluation cannot return a mated value the condition is useless. No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -1431,7 +1431,6 @@ split_point_start: // At split points actual search starts from here
|
|||||||
// Prune moves with negative or equal SEE
|
// Prune moves with negative or equal SEE
|
||||||
if ( futilityBase < beta
|
if ( futilityBase < beta
|
||||||
&& depth < DEPTH_ZERO
|
&& depth < DEPTH_ZERO
|
||||||
&& bestValue > value_mated_in(PLY_MAX)
|
|
||||||
&& pos.see(move) <= 0)
|
&& pos.see(move) <= 0)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user