X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=5e747a7f13fdda58c953209c19c1b9be7470e8eb;hp=788aed17c21ce0b3b066bae8dcc5f0ffe1b6dceb;hb=0e1f734b05ee5c67e9a17ae0e2045a64209dee05;hpb=84f3e867903f62480c33243dd0ecbffd342796fc diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 788aed17..5e747a7f 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -21,6 +21,7 @@ #include #include +#include "evaluate.h" #include "misc.h" #include "search.h" #include "thread.h" @@ -78,8 +79,8 @@ void init(OptionsMap& o) { o["SyzygyProbeDepth"] << Option(1, 1, 100); o["Syzygy50MoveRule"] << Option(true); o["SyzygyProbeLimit"] << Option(7, 0, 7); - o["Use NNUE"] << Option(false, on_use_NNUE); - o["EvalFile"] << Option("nn-97f742aaefcd.nnue", on_eval_file); + o["Use NNUE"] << Option(true, on_use_NNUE); + o["EvalFile"] << Option(EvalFileDefaultName, on_eval_file); }