Skip to content

Commit

Permalink
Bench: 29925582
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Nov 22, 2023
1 parent da66464 commit 5a3d134
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/movepicker.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ Move NextMove(MovePicker *mp) {
case NOISY_GOOD:
// Save seemingly bad noisy moves for later
while ((move = PickNextMove(mp)))
if ( mp->list.moves[mp->list.next-1].score > 13540
|| (mp->list.moves[mp->list.next-1].score > -9135 && SEE(pos, move, mp->threshold)))
if ( mp->list.moves[mp->list.next-1].score > 14540 - 200 * mp->depth
|| (mp->list.moves[mp->list.next-1].score > -9935 + 200 * mp->depth && SEE(pos, move, mp->threshold)))
return move;
else
mp->list.moves[mp->bads++].move = move;
Expand Down

0 comments on commit 5a3d134

Please sign in to comment.