X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=fa2a0cab342630862c4c61babc723c9678527729;hp=919271a95e78adf1163b445c2e6bbdbb83813553;hb=a55b06d3c90674261b387bcf27f13b6813801bc3;hpb=5dc23121215039938a9ef4e59ae934312774571c diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 919271a9..fa2a0cab 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())