From 3edb15d18397a687c952a3841b29215b7ee90575 Mon Sep 17 00:00:00 2001 From: Gary Linscott Date: Thu, 2 May 2013 09:47:34 -0400 Subject: [PATCH] More aggressive move count pruning --- src/search.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.cpp b/src/search.cpp index dfd2d3ba..c56839ba 100644 --- a/src/search.cpp +++ b/src/search.cpp @@ -145,7 +145,7 @@ void Search::init() { // Init futility move count array for (d = 0; d < 32; d++) - FutilityMoveCounts[d] = int(3.001 + 0.25 * pow(double(d), 2.0)); + FutilityMoveCounts[d] = int(3.0 + 0.3 * pow(double(d), 1.8)); } -- 2.39.2