From ab198bd13a44344989c34ee1fda1e56fa00cbe1f Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 27 Jul 2026 20:44:07 +0200 Subject: making it uci compatible --- src/fen.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/fen.cpp') diff --git a/src/fen.cpp b/src/fen.cpp index 21ea778..7597143 100644 --- a/src/fen.cpp +++ b/src/fen.cpp @@ -1,7 +1,6 @@ #include "fen.hpp" #include "board.hpp" #include -#include #include #include #include @@ -27,8 +26,6 @@ void setBoardFen(std::string fen, Game *b) { parserState state = POSITION; for (uint i = 0; i < fen.length(); i++) { - std::printf("state: %d\n", state); - std::printf("doing: %c\n", fen[i]); if (fen[i] == ' ') { if (state == POSITION) { state = TURN; -- cgit v1.2.3