Simplify reduction formula #2122

Simplify reduction formula

No functional change.
This commit is contained in:
Moez Jellouli
2019-05-15 10:26:32 +02:00
committed by Marco Costalba
parent 66820a2668
commit 2d9fac1e13

View File

@@ -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));
}