X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=95e3e279bef7714e225112e9fd618ee1f31ea04c;hp=a58ac1ae4a8378e12b6ade96a732739246076b4c;hb=a9e55d43262d11a916bdfa68cd1de0174d884cd3;hpb=54b7da120f6d88f66c22598fb2d1df29e9a17a9c diff --git a/src/ucioption.cpp b/src/ucioption.cpp index a58ac1ae..95e3e279 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -120,12 +120,10 @@ 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)); - o.push_back(Option("Futility Margin 1", 100, 0, 1000)); - o.push_back(Option("Futility Margin 2", 300, 0, 1000)); + o.push_back(Option("Futility Margin (Quiescence Search)", 50, 0, 1000)); + o.push_back(Option("Futility Margin Scale Factor (Main Search)", 100, 0, 1000)); o.push_back(Option("Maximum Razoring Depth", 3, 0, 4)); o.push_back(Option("Razoring Margin", 300, 150, 600)); o.push_back(Option("LSN filtering", true)); @@ -184,7 +182,9 @@ namespace { { std::istringstream ss(it->currentValue); ss >> ret; - } + } else + assert(false); + return ret; }