X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.h;h=cbf150c3e0a58db182ceb0679ab87b10d7f8bf29;hp=87411a44929e93ede02be81d186cf81822566e95;hb=91cc82aa2566e6b6fa60cf82298250d6e4e2dd46;hpb=5cbcff55cc3a2ff78dd83e7a3f94c5414946f82c diff --git a/src/uci.h b/src/uci.h index 87411a44..cbf150c3 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 value(Value v, Value alpha = -VALUE_INFINITE, Value beta = VALUE_INFINITE); +std::string square(Square s); +std::string move(Move m, bool chess960); +Move to_move(const Position& pos, std::string& str); + } // namespace UCI extern UCI::OptionsMap Options;