X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fucioption.cpp;h=c777383e47a05fd16ceec4462f7eabf7de9bcea4;hb=23490bd825d60564b1368b6a7e3df7d86a772bf0;hp=919271a95e78adf1163b445c2e6bbdbb83813553;hpb=d3600c39a745179ed6b094b305d0645e83a1ee86;p=stockfish diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 919271a9..c777383e 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -85,6 +85,7 @@ namespace { o.push_back(Option("Pawn Structure (Endgame)", 100, 0, 200)); o.push_back(Option("Passed Pawns (Middle Game)", 100, 0, 200)); o.push_back(Option("Passed Pawns (Endgame)", 100, 0, 200)); + o.push_back(Option("Space", 100, 0, 200)); o.push_back(Option("Aggressiveness", 100, 0, 200)); o.push_back(Option("Cowardice", 100, 0, 200)); o.push_back(Option("King Safety Curve", "Quadratic", COMBO)); @@ -120,6 +121,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 +178,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())