Skip to content

Commit

Permalink
Remove one condition in probcut TTmove skipping
Browse files Browse the repository at this point in the history
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
  • Loading branch information
vondele committed Apr 16, 2020
1 parent ecac132 commit 345b2d1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -909,7 +909,6 @@ namespace {
while ( (move = mp.next_move()) != MOVE_NONE
&& probCutCount < 2 + 2 * cutNode
&& !( move == ttMove
&& (tte->bound() & BOUND_LOWER)
&& tte->depth() >= depth - 4
&& ttValue < raisedBeta))
if (move != excludedMove && pos.legal(move))
Expand Down

0 comments on commit 345b2d1

Please sign in to comment.