projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d44ac0a
)
More aggressive move count pruning
author
Gary Linscott
<glinscott@gmail.com>
Thu, 2 May 2013 13:47:34 +0000 (09:47 -0400)
committer
Gary Linscott
<glinscott@gmail.com>
Thu, 2 May 2013 13:47:34 +0000 (09:47 -0400)
src/search.cpp
patch
|
blob
|
history
diff --git
a/src/search.cpp
b/src/search.cpp
index
dfd2d3b
..
c56839b
100644
(file)
--- 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));
}