X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=1080d5977104c6d0a6d0d2b791e4b0c25f1d32a0;hp=59b50d3cfe6dd6bc96ab9278bee01ce674098799;hb=2469daebb1b2ec2ca1653754c35327c16838938e;hpb=aa10d0aaa60ec3480d3cb1b4a7fcc4084df25d8f diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 59b50d3c..1080d597 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -26,7 +26,7 @@ #include "misc.h" #include "thread.h" #include "tt.h" -#include "ucioption.h" +#include "uci.h" using std::string; @@ -55,7 +55,7 @@ bool CaseInsensitiveLess::operator() (const string& s1, const string& s2) const void init(OptionsMap& o) { o["Write Debug Log"] << Option(false, on_logger); - o["Contempt"] << Option(0, -100, 100); + o["Contempt"] << Option(0, -100, 100); o["Min Split Depth"] << Option(0, 0, 12, on_threads); o["Threads"] << Option(1, 1, MAX_THREADS, on_threads); o["Hash"] << Option(16, 1, 1024 * 1024, on_hash_size);