mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-22 18:17:02 +08:00
Simplify reduction formula #2122
Simplify reduction formula No functional change.
This commit is contained in:
committed by
Marco Costalba
parent
66820a2668
commit
2d9fac1e13
@@ -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));
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user