mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Restore development version
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
78e6b361c5
commit
867a5a8cd2
3 changed files with 3 additions and 3 deletions
|
@ -29,7 +29,7 @@ Cowardice = 100
|
||||||
Min Split Depth = 4
|
Min Split Depth = 4
|
||||||
Max Threads per Split Point = 5
|
Max Threads per Split Point = 5
|
||||||
Threads = 1
|
Threads = 1
|
||||||
Use Sleeping Threads = false
|
Use Sleeping Threads = true
|
||||||
Hash = 128
|
Hash = 128
|
||||||
Ponder = true
|
Ponder = true
|
||||||
OwnBook = false
|
OwnBook = false
|
||||||
|
|
|
@ -55,7 +55,7 @@ using namespace std;
|
||||||
/// Version number. If Version is left empty, then Tag plus current
|
/// Version number. If Version is left empty, then Tag plus current
|
||||||
/// date (in the format YYMMDD) is used as a version number.
|
/// date (in the format YYMMDD) is used as a version number.
|
||||||
|
|
||||||
static const string Version = "2.2.1";
|
static const string Version = "";
|
||||||
static const string Tag = "";
|
static const string Tag = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ OptionsMap::OptionsMap() {
|
||||||
o["Min Split Depth"] = UCIOption(msd, 4, 7);
|
o["Min Split Depth"] = UCIOption(msd, 4, 7);
|
||||||
o["Max Threads per Split Point"] = UCIOption(5, 4, 8);
|
o["Max Threads per Split Point"] = UCIOption(5, 4, 8);
|
||||||
o["Threads"] = UCIOption(cpus, 1, MAX_THREADS);
|
o["Threads"] = UCIOption(cpus, 1, MAX_THREADS);
|
||||||
o["Use Sleeping Threads"] = UCIOption(false);
|
o["Use Sleeping Threads"] = UCIOption(true);
|
||||||
o["Hash"] = UCIOption(32, 4, 8192);
|
o["Hash"] = UCIOption(32, 4, 8192);
|
||||||
o["Clear Hash"] = UCIOption(false, "button");
|
o["Clear Hash"] = UCIOption(false, "button");
|
||||||
o["Ponder"] = UCIOption(true);
|
o["Ponder"] = UCIOption(true);
|
||||||
|
|
Loading…
Add table
Reference in a new issue