mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
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 <mcostalba@gmail.com>
This commit is contained in:
parent
8d86e95e37
commit
f4b4d4901c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue