From: Joona Kiiski Date: Fri, 7 Jan 2011 22:13:22 +0000 (+0200) Subject: Change Emergency time maximum from 60000 to 30000 X-Git-Url: https://git.sesse.net/?p=stockfish;a=commitdiff_plain;h=f4b4d4901c31a02444b5d5821fd5269071c32ff9 Change Emergency time maximum from 60000 to 30000 I got report from Werner that Shredder Gui has problems with UCI values which maximum value is greater than 30000. Of course it's stupid to change engine to fix a GUI's bug, but on the other hand 30000 ms as maximum value is clearly enough, so why not to be merciful Signed-off-by: Marco Costalba --- diff --git a/src/ucioption.cpp b/src/ucioption.cpp index de4e07fb..c7883d4c 100644 --- a/src/ucioption.cpp +++ b/src/ucioption.cpp @@ -101,7 +101,7 @@ void init_uci_options() { Options["OwnBook"] = Option(true); Options["MultiPV"] = Option(1, 1, 500); Options["Emergency Move Horizon"] = Option(40, 0, 50); - Options["Emergency Base Time"] = Option(200, 0, 60000); + Options["Emergency Base Time"] = Option(200, 0, 30000); Options["Emergency Move Time"] = Option(70, 0, 5000); Options["Minimum Thinking Time"] = Option(20, 0, 5000); Options["UCI_Chess960"] = Option(false);