]> git.sesse.net Git - stockfish/commitdiff
More aggressive move count pruning
authorGary Linscott <glinscott@gmail.com>
Thu, 2 May 2013 13:47:34 +0000 (09:47 -0400)
committerGary Linscott <glinscott@gmail.com>
Thu, 2 May 2013 13:47:34 +0000 (09:47 -0400)
src/search.cpp

index dfd2d3ba05bbcf580f7c521afabedf253ba15e2f..c56839bae526bda09a628468a387efc7b60b5a14 100644 (file)
@@ -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));
 }