Skip to content

Commit

Permalink
Bench: 3557275
Browse files Browse the repository at this point in the history
  • Loading branch information
jhonnold committed Sep 30, 2023
1 parent 05769c3 commit 39273f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -458,8 +458,7 @@ int Negamax(int alpha, int beta, int depth, int cutnode, ThreadData* thread, PV*
// Reverse Futility Pruning
// i.e. the static eval is so far above beta we prune
if (depth <= 8 && !ss->skip && eval < WINNING_ENDGAME && eval >= beta &&
eval - 69 * depth + 112 * (improving && !board->easyCapture) >= beta &&
(!hashMove || GetHistory(ss, thread, hashMove) > 12288))
eval - 69 * depth + 112 * improving >= beta && (!hashMove || GetHistory(ss, thread, hashMove) > 12288))
return eval;

// Razoring
Expand Down

0 comments on commit 39273f5

Please sign in to comment.