1
0
Fork 0

bench 5714575

pull/3724/head
Michael Chaly 2021-10-03 11:27:40 +03:00
parent 21ad356c09
commit 23c9084170
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ namespace {
void Search::init() {
for (int i = 1; i < MAX_MOVES; ++i)
Reductions[i] = int(21.9 * std::log(i));
Reductions[i] = int((21.9 + std::log(Threads.size()) / 2) * std::log(i));
}