]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
In non-PV IID don't call evaluate when in check
[stockfish] / src / ucioption.cpp
index 6e727954e68095a6896a03ac3fc5f1fbc2a4db74..2185edf07c881ab6fe694fa6d2cfc5a44f6f9742 100644 (file)
@@ -125,6 +125,7 @@ namespace {
     o["Threads"] = Option(1, 1, 8);
     o["Hash"] = Option(32, 4, 4096);
     o["Clear Hash"] = Option(false, BUTTON);
+    o["New Game"] = Option(false, BUTTON);
     o["Ponder"] = Option(true);
     o["OwnBook"] = Option(true);
     o["MultiPV"] = Option(1, 1, 500);
@@ -169,6 +170,18 @@ namespace {
       return ret;
   }
 
+  // Specialization for std::string where instruction 'ss >> ret;'
+  // would erroneusly tokenize a string with spaces.
+
+  template<>
+  string get_option_value<string>(const string& optionName) {
+
+      if (options.find(optionName) == options.end())
+          return string();
+
+      return options[optionName].currentValue;
+  }
+
 }
 
 ////
@@ -210,7 +223,7 @@ void print_uci_options() {
   for (Options::const_iterator it = options.begin(); it != options.end(); ++it)
       vec.push_back(it->second);
 
-  std::stable_sort(vec.begin(), vec.end());
+  std::sort(vec.begin(), vec.end());
 
   for (std::vector<Option>::const_iterator it = vec.begin(); it != vec.end(); ++it)
   {