Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
Bench: 1741218
  • Loading branch information
XInTheDark committed Mar 10, 2024
1 parent 6af79e1 commit cc493c2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -767,8 +767,7 @@ Value Search::Worker::search(
&& eval - futility_margin(depth, cutNode && !ss->ttHit, improving, opponentWorsening)
- (ss - 1)->statScore / 287
>= beta
&& eval >= beta && eval < VALUE_TB_WIN_IN_MAX_PLY
&& (!ttMove || ttCapture))
&& eval >= beta && eval < VALUE_TB_WIN_IN_MAX_PLY && (!ttMove || ttCapture))
return beta > VALUE_TB_LOSS_IN_MAX_PLY ? (eval + beta) / 2 : eval;

// Step 9. Null move search with verification search (~35 Elo)
Expand Down

0 comments on commit cc493c2

Please sign in to comment.