diff options
| author | Scott Gasch <[email protected]> | 2026-08-30 17:17:44 -0700 |
|---|---|---|
| committer | Scott Gasch <[email protected]> | 2026-08-30 17:17:44 -0700 |
| commit | fd1460b2c135f6cef502fd167d1df0edf223e312 (patch) | |
| tree | ee20bae148e436a88abfb9e709fcf96634f04d45 /src/root.c | |
| parent | 3eac7f469add78edb9dd7dced36bde5427346321 (diff) | |
Improving for nullmove, eval speedup, remove old cruft, bugfix in split / MP.
Diffstat (limited to 'src/root.c')
| -rwxr-xr-x | src/root.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |
