Skip to content

Commit e47b744

Browse files
BM123499vondele
authored andcommitted
Simplify Reductions Initialization
passed STC: LLR: 2.94 (-2.94,2.94) <-2.50,0.50> Total: 45032 W: 3600 L: 3518 D: 37914 Ptnml(0-2): 111, 2893, 16435, 2957, 120 https://tests.stockfishchess.org/tests/view/60d2655d40925195e7a6c527 LTC: LLR: 3.00 (-2.94,2.94) <-2.50,0.50> Total: 25728 W: 786 L: 722 D: 24220 Ptnml(0-2): 5, 650, 11494, 706, 9 https://tests.stockfishchess.org/tests/view/60d2b14240925195e7a6c577 closes official-stockfish#3584 bench: 4602977
1 parent 0470bce commit e47b744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ namespace {
152152
void Search::init() {
153153

154154
for (int i = 1; i < MAX_MOVES; ++i)
155-
Reductions[i] = int(21.3 * std::log(i + 0.25 * std::log(i)));
155+
Reductions[i] = int(21.9 * std::log(i));
156156
}
157157

158158

0 commit comments

Comments
 (0)