]> git.sesse.net Git - stockfish/blobdiff - src/uci.h
Final UCI helpers renaming
[stockfish] / src / uci.h
index 87411a44929e93ede02be81d186cf81822566e95..1b60680943360f8630a812232574b3f64f419c04 100644 (file)
--- a/src/uci.h
+++ b/src/uci.h
 #include <map>
 #include <string>
 
+#include "types.h"
+
+class Position;
+
 namespace UCI {
 
 class Option;
@@ -63,6 +67,11 @@ private:
 void init(OptionsMap&);
 void loop(int argc, char* argv[]);
 
+Move to_move(const Position& pos, std::string& str);
+std::string format_move(Move m, bool chess960);
+std::string format_value(Value v, Value alpha = -VALUE_INFINITE, Value beta = VALUE_INFINITE);
+std::string format_square(Square s);
+
 } // namespace UCI
 
 extern UCI::OptionsMap Options;