X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=c777383e47a05fd16ceec4462f7eabf7de9bcea4;hp=919271a95e78adf1163b445c2e6bbdbb83813553;hb=3fafc9768ae47d0d5e963ade37a18b5a1d2a3b1f;hpb=5dc23121215039938a9ef4e59ae934312774571c 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())