Skip to content

Commit

Permalink
Merge increased 'movecount' pruning
Browse files Browse the repository at this point in the history
Good at both short and long TC

15+0.05
LLR: 2.95 (-2.94,2.94)
Total: 13814 W: 2731 L: 2588 D: 8495

TC 60+0.05
LLR: 2.95 (-2.94,2.94)
Total: 18013 W: 3136 L: 2946 D: 11931

bench: 4306557
  • Loading branch information
mcostalba committed May 5, 2013
2 parents 0958e5c + 11d30b6 commit 7f4c7cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/search.cpp
Expand Up @@ -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.001 + 0.3 * pow(double(d), 1.8));
}


Expand Down

0 comments on commit 7f4c7cd

Please sign in to comment.