From: VoyagerOne Date: Mon, 17 Apr 2017 16:21:16 +0000 (-0700) Subject: Move-Count Formula Tweak X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=9d3ed9ed2ef97fda99183c1290fd4f51dac55180 Move-Count Formula Tweak STC: LLR: 3.18 (-2.94,2.94) [0.00,4.00] Total: 55004 W: 10289 L: 9930 D: 34785 LTC: LLR: 2.96 (-2.94,2.94) [0.00,4.00] Total: 48184 W: 6401 L: 6128 D: 35655 Bench: 5960754 --- diff --git a/src/search.cpp b/src/search.cpp index a9e76c45..e8137da0 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -175,8 +175,8 @@ void Search::init() { for (int d = 0; d < 16; ++d) { - FutilityMoveCounts[0][d] = int(2.4 + 0.773 * pow(d + 0.00, 1.8)); - FutilityMoveCounts[1][d] = int(2.9 + 1.045 * pow(d + 0.49, 1.8)); + FutilityMoveCounts[0][d] = int(2.4 + 0.74 * pow(d, 1.78)); + FutilityMoveCounts[1][d] = int(5.0 + 1.00 * pow(d, 2.00)); } }