#ifndef SRC_UCI_H_ #define SRC_UCI_H_ #include "board/board.hpp" #include #include Move UciToMove(std::string uci); void LogUci(const std::string &message); void Uci(); Game initBoard( std::string startingFEN, std::unordered_map *transPositions); void SaveTranspositionTable( const std::unordered_map &table); bool LoadTable( const std::string &filename, std::unordered_map *transpositions); #endif /* SRC_UCI_H_ */