Skip to content

Commit

Permalink
Some more solid attempt, take 1. Bench: 3577786.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefano80 committed Mar 2, 2019
1 parent c9a5777 commit 8ebf144
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 @@ -1080,7 +1080,7 @@ namespace {
trainNN = true;

// Decrease/increase reduction for moves with a good/bad history (~30 Elo)
r -= ss->statScore / 20000 * ONE_PLY;
r -= (ss->statScore + pred * 1000) / 20000 * ONE_PLY;
}

Depth d = std::max(newDepth - std::max(r, DEPTH_ZERO), ONE_PLY);
Expand Down

0 comments on commit 8ebf144

Please sign in to comment.