]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Final UCI helpers renaming
[stockfish] / src / ucioption.cpp
index 59b50d3cfe6dd6bc96ab9278bee01ce674098799..1080d5977104c6d0a6d0d2b791e4b0c25f1d32a0 100644 (file)
@@ -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);