From 4eb36e67eca586a662298bfe8cc5392fbfa698e0 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 15 Aug 2026 17:01:54 +0200 Subject: implementing memory optimazied move using uint16_t instead of a four integers and one byte --- src/uci.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/uci.hpp') diff --git a/src/uci.hpp b/src/uci.hpp index 19fd021..ba2a56c 100644 --- a/src/uci.hpp +++ b/src/uci.hpp @@ -2,10 +2,11 @@ #define SRC_UCI_H_ #include "board/board.hpp" +#include #include #include -Move UciToMove(const std::string &uci); +uint16_t UciToMove(const std::string &uci); void Uci(); Game initBoard( const std::string &startingFEN, -- cgit v1.2.3