X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=97cbe1a64684da2cddbcc86561bd19a7c1ff6063;hp=c0c1e281e8af92e4c2016dae724761150703b4cf;hb=6608a16a6a6e062921fe318846c2c21e1fbcd729;hpb=d173285da5d7683083d853ca8fba5672376f5aba diff --git a/src/ucioption.cpp b/src/ucioption.cpp index c0c1e281..97cbe1a6 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -81,8 +81,6 @@ void init_uci_options() { Options["Cowardice"] = Option(100, 0, 200); Options["Check Extension (PV nodes)"] = Option(2, 0, 2); Options["Check Extension (non-PV nodes)"] = Option(1, 0, 2); - Options["Mate Threat Extension (PV nodes)"] = Option(2, 0, 2); - Options["Mate Threat Extension (non-PV nodes)"] = Option(2, 0, 2); Options["Pawn Push to 7th Extension (PV nodes)"] = Option(1, 0, 2); Options["Pawn Push to 7th Extension (non-PV nodes)"] = Option(1, 0, 2); Options["Passed Pawn Extension (PV nodes)"] = Option(1, 0, 2); @@ -159,23 +157,23 @@ Option::Option(int def, int minv, int maxv) : type("spin"), idx(Options.size()), /// the GUI to check for option's limits, but we could receive the new value /// directly from the user by teminal window. So let's check the bounds anyway. -void Option::set_value(const string& value) { +void Option::set_value(const string& v) { assert(!type.empty()); - if (value.empty()) + if (v.empty()) return; if ( (type == "check" || type == "button") - != (value == "true" || value == "false")) + != (v == "true" || v == "false")) return; if (type == "spin") { - int v = atoi(value.c_str()); - if (v < minValue || v > maxValue) + int val = atoi(v.c_str()); + if (val < minValue || val > maxValue) return; } - currentValue = value; + currentValue = v; }