Skip to content

Commit 345b2d1

Browse files
committed
Remove one condition in probcut TTmove skipping
the removed condition appears illogical and is not needed. passed STC: LLR: 2.95 (-2.94,2.94) {-1.50,0.50} Total: 80418 W: 15217 L: 15144 D: 50057 Ptnml(0-2): 1341, 9399, 18679, 9426, 1364 https://tests.stockfishchess.org/tests/view/5e977eb5c9ada107a0370d6b passed LTC: LLR: 2.95 (-2.94,2.94) {-1.50,0.50} Total: 49878 W: 6299 L: 6247 D: 37332 Ptnml(0-2): 327, 4677, 14897, 4693, 345 https://tests.stockfishchess.org/tests/view/5e97e07dc9ada107a0370e53 closes #2638 Bench: 4958027
1 parent ecac132 commit 345b2d1

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/search.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -909,7 +909,6 @@ namespace {
909909
while ( (move = mp.next_move()) != MOVE_NONE
910910
&& probCutCount < 2 + 2 * cutNode
911911
&& !( move == ttMove
912-
&& (tte->bound() & BOUND_LOWER)
913912
&& tte->depth() >= depth - 4
914913
&& ttValue < raisedBeta))
915914
if (move != excludedMove && pos.legal(move))

0 commit comments

Comments
 (0)