Skip to content

Commit

Permalink
bench 8168409
Browse files Browse the repository at this point in the history
  • Loading branch information
rn5f107s2 committed Dec 23, 2024
1 parent e2f5090 commit e9578ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ int SearchState::search(int alpha, int beta, Position &pos, int depth, SearchInf
&& !check
&& !excluded
&& depth >= 2
&& (stack-1)->currMove != NULL_MOVE
&& ((stack-1)->currMove != NULL_MOVE || (stack-2)->currMove != NULL_MOVE)
&& stack->staticEval >= beta
&& beta > -MAXMATE) {

Expand Down

0 comments on commit e9578ba

Please sign in to comment.