1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-07-12 03:59:15 +00:00

Don't use NNUE by default - changed for an attempt on fishtest

This commit is contained in:
Dariusz Orzechowski 2020-07-20 08:39:21 +02:00
parent 675672cfc1
commit cf8a50e654

View file

@ -94,7 +94,7 @@ void init(OptionsMap& o) {
o["SyzygyProbeDepth"] << Option(1, 1, 100); o["SyzygyProbeDepth"] << Option(1, 1, 100);
o["Syzygy50MoveRule"] << Option(true); o["Syzygy50MoveRule"] << Option(true);
o["SyzygyProbeLimit"] << Option(7, 0, 7); 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); o["EvalFile"] << Option("nn.bin", on_eval_file);
} }
@ -204,6 +204,6 @@ Option& Option::operator=(const string& v) {
return *this; return *this;
} }
bool use_nnue = true; bool use_nnue = false;
bool load_eval_finished = false; bool load_eval_finished = false;
} // namespace UCI } // namespace UCI