From 3d18ad719b2e7103e27936561f8276fbed9a354b Mon Sep 17 00:00:00 2001 From: Daniel Monroe Date: Wed, 2 Apr 2025 11:57:06 -0700 Subject: [PATCH] Skip 5th continuation history Passed simplification STC LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 70208 W: 18098 L: 17914 D: 34196 Ptnml(0-2): 199, 8300, 17907, 8514, 184 https://tests.stockfishchess.org/tests/view/67ed889b31d7cf8afdc451cb Passed simplification LTC LLR: 2.94 (-2.94,2.94) <-1.75,0.25> Total: 485004 W: 122703 L: 122956 D: 239345 Ptnml(0-2): 288, 53162, 135805, 53009, 238 https://tests.stockfishchess.org/tests/view/67ee810231d7cf8afdc452ea closes https://github.com/official-stockfish/Stockfish/pull/5992 Bench: 1715901 --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index fcbac3078..92998b026 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -1917,7 +1917,7 @@ void update_all_stats(const Position& pos, // at ply -1, -2, -3, -4, and -6 with current move. void update_continuation_histories(Stack* ss, Piece pc, Square to, int bonus) { static constexpr std::array conthist_bonuses = { - {{1, 1103}, {2, 659}, {3, 323}, {4, 533}, {5, 121}, {6, 474}}}; + {{1, 1103}, {2, 659}, {3, 323}, {4, 533}, {6, 474}}}; for (const auto [i, weight] : conthist_bonuses) {