1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-11 19:49:14 +00:00

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