mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00:00
Default network path in Linux.
This commit is contained in:
parent
d7c358cf19
commit
b521e405d3
1 changed files with 4 additions and 0 deletions
|
@ -81,7 +81,11 @@ void init(OptionsMap& o) {
|
||||||
o["Syzygy50MoveRule"] << Option(true);
|
o["Syzygy50MoveRule"] << Option(true);
|
||||||
o["SyzygyProbeLimit"] << Option(7, 0, 7);
|
o["SyzygyProbeLimit"] << Option(7, 0, 7);
|
||||||
// Evaluation function file name. When this is changed, it is necessary to reread the evaluation function at the next ucinewgame timing.
|
// Evaluation function file name. When this is changed, it is necessary to reread the evaluation function at the next ucinewgame timing.
|
||||||
|
#if defined(__linux__)
|
||||||
|
o["EvalFile"] << Option("eval/nn.bin", on_eval_file);
|
||||||
|
#else
|
||||||
o["EvalFile"] << Option("eval\\nn.bin", on_eval_file);
|
o["EvalFile"] << Option("eval\\nn.bin", on_eval_file);
|
||||||
|
#endif
|
||||||
// When the evaluation function is loaded at the ucinewgame timing, it is necessary to convert the new evaluation function.
|
// When the evaluation function is loaded at the ucinewgame timing, it is necessary to convert the new evaluation function.
|
||||||
// I want to hit the test eval convert command, but there is no new evaluation function
|
// I want to hit the test eval convert command, but there is no new evaluation function
|
||||||
// It ends abnormally before executing this command.
|
// It ends abnormally before executing this command.
|
||||||
|
|
Loading…
Add table
Reference in a new issue