1
0
Fork 0
mirror of https://github.com/sockspls/badfish synced 2025-04-29 16:23:09 +00:00

Retire "New Game" UCI option

Was introduced by 403db5a6e9
on 1/12/2009 to correctly handle "loose on time"
LSN filtering functionality, but is now unused.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
Marco Costalba 2010-11-21 14:23:16 +01:00
parent fa80479b1d
commit f44aea7508
2 changed files with 0 additions and 4 deletions

View file

@ -119,10 +119,7 @@ namespace {
cout << "uciok" << endl;
}
else if (token == "ucinewgame")
{
Options["New Game"].set_value("true");
pos.from_fen(StartPositionFEN);
}
else if (token == "isready")
cout << "readyok" << endl;
else if (token == "position")

View file

@ -78,7 +78,6 @@ void init_uci_options() {
Options["Use Sleeping Master"] = Option(false);
Options["Hash"] = Option(32, 4, 8192);
Options["Clear Hash"] = Option(false, "button");
Options["New Game"] = Option(false, "button");
Options["Ponder"] = Option(true);
Options["OwnBook"] = Option(true);
Options["MultiPV"] = Option(1, 1, 500);