Skip to content

Commit

Permalink
combo of 2 formulas
Browse files Browse the repository at this point in the history
  • Loading branch information
MJZ1977 committed Aug 3, 2019
1 parent fcee0ce commit 5a9bd10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -798,7 +798,7 @@ namespace {
&& (ss-1)->currentMove != MOVE_NULL
&& (ss-1)->statScore < 22661
&& eval >= beta
&& ss->staticEval >= beta - 33 * depth / ONE_PLY + 299
&& ss->staticEval >= std::min(beta - 33 * depth / ONE_PLY + 180 + ss->ply * 4, -(ss-1)->staticEval + 160)
&& !excludedMove
&& pos.non_pawn_material(us)
&& (ss->ply >= thisThread->nmpMinPly || us != thisThread->nmpColor))
Expand Down

0 comments on commit 5a9bd10

Please sign in to comment.