mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 00:33:09 +00:00
Raise Min Split Depth
Raise the limit to 12 so to allow people to test on many cores machines. Suggested by Gary and Martin. No functional change.
This commit is contained in:
parent
0b4ea54da9
commit
f2638816bf
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ void init(OptionsMap& o) {
|
|||
o["Passed Pawns (Middle Game)"] = Option(100, 0, 200, on_eval);
|
||||
o["Passed Pawns (Endgame)"] = Option(100, 0, 200, on_eval);
|
||||
o["Space"] = Option(100, 0, 200, on_eval);
|
||||
o["Min Split Depth"] = Option(msd, 4, 7, on_threads);
|
||||
o["Min Split Depth"] = Option(msd, 4, 12, on_threads);
|
||||
o["Max Threads per Split Point"] = Option(5, 4, 8, on_threads);
|
||||
o["Threads"] = Option(cpus, 1, MAX_THREADS, on_threads);
|
||||
o["Use Sleeping Threads"] = Option(true);
|
||||
|
|
Loading…
Add table
Reference in a new issue