]> git.sesse.net Git - stockfish/blobdiff - src/uci.h
Change profile-build options to produce 1% to 2% faster executables.
[stockfish] / src / uci.h
index 87411a44929e93ede02be81d186cf81822566e95..cbf150c3e0a58db182ceb0679ab87b10d7f8bf29 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[]);
 
+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;