summaryrefslogtreecommitdiff
path: root/src/root.c
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2026-08-30 17:17:44 -0700
committerScott Gasch <[email protected]>2026-08-30 17:17:44 -0700
commitfd1460b2c135f6cef502fd167d1df0edf223e312 (patch)
treeee20bae148e436a88abfb9e709fcf96634f04d45 /src/root.c
parent3eac7f469add78edb9dd7dced36bde5427346321 (diff)
Improving for nullmove, eval speedup, remove old cruft, bugfix in split / MP.
Diffstat (limited to 'src/root.c')
-rwxr-xr-xsrc/root.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/root.c b/src/root.c
index d9768fe..7a27ae7 100755
--- a/src/root.c
+++ b/src/root.c
@@ -978,7 +978,7 @@ _IterateSetSearchGlobals(ULONG uDepth)
// Determine how much depth we need below a point in the tree in
// order to split the search (which is based on iteration depth).
//
- uDontSplitLessThan = (ULONG)((double)(uDepth) * 0.30);
+ uDontSplitLessThan = (ULONG)((double)(uDepth) * 0.20);
for (v = 0; v < MAX_PLY_PER_SEARCH; v++)
{
g_fCanSplit[v] = ((v + 1) >= uDontSplitLessThan);