Skip to content

Commit

Permalink
Fix a warning in GCC for Windows
Browse files Browse the repository at this point in the history
No functional change
  • Loading branch information
snicolet committed Mar 6, 2018
1 parent 43682d0 commit d42e633
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/search.cpp
Expand Up @@ -761,6 +761,7 @@ namespace {
Value rbeta = std::min(beta + 200, VALUE_INFINITE);
MovePicker mp(pos, ttMove, rbeta - ss->staticEval, &thisThread->captureHistory);
int probCutCount = 0;

while ( (move = mp.next_move()) != MOVE_NONE
&& probCutCount < depth / ONE_PLY - 3)
if (pos.legal(move))
Expand All @@ -777,7 +778,7 @@ namespace {
// Perform a preliminary search at depth 1 to verify that the move holds.
// We will only do this search if the depth is not 5, thus avoiding two
// searches at depth 1 in a row.
if (depth > 5 * ONE_PLY)
if (depth != 5 * ONE_PLY)
value = -search<NonPV>(pos, ss+1, -rbeta, -rbeta+1, ONE_PLY, !cutNode, true);

// If the first search was skipped or was performed and held, perform
Expand Down

0 comments on commit d42e633

Please sign in to comment.