X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=0c3837ce869b64cdf02d2d856f4427832a8fafcf;hp=e34c0e775b4d3fdc21ee4f258c5e4de7e6416a5d;hb=8d86c87e1e0f883e8772d63c67c360813ecc2092;hpb=ec236924331beb1664d3b5f73f8eb4827827fe3b diff --git a/src/ucioption.cpp b/src/ucioption.cpp index e34c0e77..0c3837ce 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", true)); 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())