mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00:00
Simplify reduction formula #2122
Simplify reduction formula No functional change.
This commit is contained in:
committed by
Marco Costalba
parent
66820a2668
commit
2d9fac1e13
+1
-1
@@ -149,7 +149,7 @@ namespace {
|
|||||||
void Search::init() {
|
void Search::init() {
|
||||||
|
|
||||||
for (int i = 1; i < MAX_MOVES; ++i)
|
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