Skip to content

Commit 7bad507

Browse files
committed
Make use of asymmetric SEE
1 parent d3c3c4f commit 7bad507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1228,7 +1228,7 @@ namespace {
12281228
// Prune moves with negative or equal SEE
12291229
if ( futilityBase < beta
12301230
&& depth < DEPTH_ZERO
1231-
&& pos.see(move) <= 0)
1231+
&& pos.see_asymm(move, beta - futilityBase) <= 0)
12321232
{
12331233
bestValue = std::max(bestValue, futilityBase);
12341234
continue;

0 commit comments

Comments
 (0)