Skip to content

Commit

Permalink
Fixes a wrongly combined merge conflict from the previous merge wave.
Browse files Browse the repository at this point in the history
Passed STC:
https://tests.stockfishchess.org/tests/view/67a288aaeb183d11c65945f1
LLR: 2.99 (-2.94,2.94) <0.00,2.00>
Total: 51424 W: 13588 L: 13237 D: 24599
Ptnml(0-2): 223, 6039, 12860, 6344, 246

Passed LTC:
https://tests.stockfishchess.org/tests/view/67a28c0aeb183d11c6594609
LLR: 2.94 (-2.94,2.94) <0.50,2.50>
Total: 54144 W: 13900 L: 13543 D: 26701
Ptnml(0-2): 42, 5881, 14870, 6236, 43

closes #5863

Bench: 2345723
  • Loading branch information
Disservin committed Feb 4, 2025
1 parent e852d98 commit 2a5b41f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1165,7 +1165,7 @@ Value Search::Worker::search(

// These reduction adjustments have no proven non-linear scaling

r += 316 - moveCount * 63;
r += 316 - moveCount * 32;

r -= std::abs(correctionValue) / 31568;

Expand Down

0 comments on commit 2a5b41f

Please sign in to comment.