Skip to content

Commit

Permalink
Simplify reduction formula #2122
Browse files Browse the repository at this point in the history
Simplify reduction formula

No functional change.
  • Loading branch information
MJZ1977 authored and mcostalba committed May 15, 2019
1 parent 66820a2 commit 2d9fac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -149,7 +149,7 @@ namespace {
void Search::init() {

for (int i = 1; i < MAX_MOVES; ++i)
Reductions[i] = int(1024 * std::log(i) / std::sqrt(1.95));
Reductions[i] = int(733.3 * std::log(i));
}


Expand Down

0 comments on commit 2d9fac1

Please sign in to comment.