X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=054b6c1713b0b35ebff90653a8c5ae6c013ceb71;hp=e34c0e775b4d3fdc21ee4f258c5e4de7e6416a5d;hb=5f8f83bc0510039529040e7e877fa66fcb28005e;hpb=2fa9d25e8241e3cd8f53275aae05c959c555ba5a diff --git a/src/ucioption.cpp b/src/ucioption.cpp index e34c0e77..054b6c17 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -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 T get_option_value(const std::string& optionName) { - T ret; + T ret = T(); Options::iterator it = option_with_name(optionName); if (it != options.end())