From: Marco Costalba Date: Tue, 24 Mar 2009 09:50:13 +0000 (+0100) Subject: When asked for position key print it as an hex value X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=72af519e7ff93ca3524f82db1d429002d2d9ea72;p=fairystockfish.git When asked for position key print it as an hex value Merged from Glaurung current development snapshot. Signed-off-by: Marco Costalba --- diff --git a/src/uci.cpp b/src/uci.cpp index 6ce3bf8..4845975 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -170,7 +170,7 @@ namespace { } else if (token == "key") { - std::cout << "key: " << RootPosition.get_key() + std::cout << "key: " << std::hex << RootPosition.get_key() << " material key: " << RootPosition.get_material_key() << " pawn key: " << RootPosition.get_pawn_key() << std::endl;