mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 16:47:37 +00:00
Make use of asymmetric SEE
This commit is contained in:
+1
-1
@@ -1228,7 +1228,7 @@ split_point_start: // At split points actual search starts from here
|
||||
// Prune moves with negative or equal SEE
|
||||
if ( futilityBase < beta
|
||||
&& depth < DEPTH_ZERO
|
||||
&& pos.see(move) <= 0)
|
||||
&& pos.see_asymm(move, beta - futilityBase) <= 0)
|
||||
{
|
||||
bestValue = std::max(bestValue, futilityBase);
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user