Skip to content

Commit f8aa78e

Browse files
FauziAkramvondele
authored andcommitted
Simplify ttMove reduction formula
Passed STC non-reg: LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 110720 W: 28313 L: 28180 D: 54227 Ptnml(0-2): 230, 12259, 30279, 12332, 260 https://tests.stockfishchess.org/tests/view/69fa69c83a3c3e525bb2b645 Passed LTC non-reg: LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 307728 W: 77955 L: 78027 D: 151746 Ptnml(0-2): 138, 33481, 86698, 33409, 138 https://tests.stockfishchess.org/tests/view/6a00a2549392f0c317214085 closes official-stockfish#6826 Bench: 2559757
1 parent 3fcd374 commit f8aa78e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/search.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1268,7 +1268,7 @@ Value Search::Worker::search(
12681268

12691269
// For first picked move (ttMove) reduce reduction
12701270
else if (move == ttData.move)
1271-
r = std::max(-10, r - 2016 + 150 * cutNode);
1271+
r -= 2016 + 150 * cutNode;
12721272

12731273
if (capture)
12741274
ss->statScore = 809 * int(PieceValue[pos.captured_piece()]) / 128

0 commit comments

Comments
 (0)