mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 00:56:39 +08:00
Introduce "Zugzwang detection" temporary hack for 1.7.1
Add an UCI option "Zugzwang detection" OFF by default that enables correct detection of zugzwang. This is just to let 1.7.1 be 100% compatible with 1.7 and should be removed after release. Verified 100% functional equivalent to 1.7 Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -113,6 +113,9 @@ 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;
|
||||
|
||||
Reference in New Issue
Block a user