]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Restore development versioning and LSN filtering
[stockfish] / src / ucioption.cpp
index 919271a95e78adf1163b445c2e6bbdbb83813553..fa2a0cab342630862c4c61babc723c9678527729 100644 (file)
@@ -120,6 +120,7 @@ namespace {
     o.push_back(Option("Full Depth Moves (non-PV nodes)", 3, 1, 100));
     o.push_back(Option("Threat Depth", 5, 0, 100));
     o.push_back(Option("Selective Plies", 7, 0, 10));
+    o.push_back(Option("Null driven IID", false));
     o.push_back(Option("Futility Pruning (Main Search)", true));
     o.push_back(Option("Futility Pruning (Quiescence Search)", true));
     o.push_back(Option("Futility Margin 0", 50, 0, 1000));
@@ -176,7 +177,7 @@ namespace {
   template<typename T>
   T get_option_value(const std::string& optionName) {
 
-      T ret;
+      T ret = T();
       Options::iterator it = option_with_name(optionName);
 
       if (it != options.end())