mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Don't use NNUE by default - changed for an attempt on fishtest
This commit is contained in:
parent
675672cfc1
commit
cf8a50e654
1 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ void init(OptionsMap& o) {
|
|||
o["SyzygyProbeDepth"] << Option(1, 1, 100);
|
||||
o["Syzygy50MoveRule"] << Option(true);
|
||||
o["SyzygyProbeLimit"] << Option(7, 0, 7);
|
||||
o["Use NNUE"] << Option(true, on_use_nnue);
|
||||
o["Use NNUE"] << Option(false, on_use_nnue);
|
||||
o["EvalFile"] << Option("nn.bin", on_eval_file);
|
||||
}
|
||||
|
||||
|
@ -204,6 +204,6 @@ Option& Option::operator=(const string& v) {
|
|||
return *this;
|
||||
}
|
||||
|
||||
bool use_nnue = true;
|
||||
bool use_nnue = false;
|
||||
bool load_eval_finished = false;
|
||||
} // namespace UCI
|
||||
|
|
Loading…
Add table
Reference in a new issue