X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fucioption.cpp;h=04f06759881605b5a677daac66b0d7aa08ef888b;hp=154e141080371612256c68f3b995d147582ebc5b;hb=977cd9520a70c902c703c6eed177fabb85f8a41e;hpb=f9d3b48ad0ed62732bb07d4811f4fd17cf088cfe diff --git a/src/ucioption.cpp b/src/ucioption.cpp index 154e1410..04f06759 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -79,6 +79,7 @@ namespace { o["Use Search Log"] = Option(false); o["Search Log Filename"] = Option("SearchLog.txt"); o["Book File"] = Option("book.bin"); + o["Best Book Move"] = Option(false); o["Mobility (Middle Game)"] = Option(100, 0, 200); o["Mobility (Endgame)"] = Option(100, 0, 200); o["Pawn Structure (Middle Game)"] = Option(100, 0, 200); @@ -92,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); @@ -113,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;