1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-30 16:53:09 +00:00

More aggressive move count pruning

This commit is contained in:
Gary Linscott 2013-05-02 09:47:34 -04:00
parent d44ac0a485
commit 3edb15d183

View 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));
}