X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=04f06759881605b5a677daac66b0d7aa08ef888b;hp=990c748c9012d649c3182f8186430b5c3a449b00;hb=82bd61a8fad125edaff8a57243354856772731ed;hpb=94bb1964f6b5b4b9abca0bde03367d071922f449 diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 990c748c..04f06759 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -93,8 +93,8 @@ namespace { o["Check Extension (non-PV nodes)"] = Option(1, 0, 2); o["Single Evasion Extension (PV nodes)"] = Option(2, 0, 2); o["Single Evasion Extension (non-PV nodes)"] = Option(2, 0, 2); - o["Mate Threat Extension (PV nodes)"] = Option(0, 0, 2); - o["Mate Threat Extension (non-PV nodes)"] = Option(0, 0, 2); + o["Mate Threat Extension (PV nodes)"] = Option(2, 0, 2); + o["Mate Threat Extension (non-PV nodes)"] = Option(2, 0, 2); o["Pawn Push to 7th Extension (PV nodes)"] = Option(1, 0, 2); o["Pawn Push to 7th Extension (non-PV nodes)"] = Option(1, 0, 2); o["Passed Pawn Extension (PV nodes)"] = Option(1, 0, 2); @@ -114,9 +114,6 @@ namespace { o["UCI_Chess960"] = Option(false); o["UCI_AnalyseMode"] = Option(false); - // Temporary hack for 1.7.1 to be removed in next release - o["Zugzwang detection"] = Option(false); - // Any option should know its name so to be easily printed for (Options::iterator it = o.begin(); it != o.end(); ++it) it->second.name = it->first;