X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.h;h=a39624a9aca2b5cd96941fb2c13edde7a324543c;hp=87411a44929e93ede02be81d186cf81822566e95;hb=94dd204c3b10ebe0e6c8df5d7c98de5ba4906cad;hpb=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c diff --git a/src/uci.h b/src/uci.h index 87411a44..a39624a9 100644 --- a/src/uci.h +++ b/src/uci.h @@ -23,6 +23,10 @@ #include #include +#include "types.h" + +class Position; + namespace UCI { class Option; @@ -63,6 +67,11 @@ private: void init(OptionsMap&); void loop(int argc, char* argv[]); +std::string format_value(Value v, Value alpha = -VALUE_INFINITE, Value beta = VALUE_INFINITE); +std::string format_square(Square s); +std::string format_move(Move m, bool chess960); +Move to_move(const Position& pos, std::string& str); + } // namespace UCI extern UCI::OptionsMap Options;