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:
parent
66820a2668
commit
2d9fac1e13
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue