From bb42f7d438c088b18e953e38cb07d0cdf25f749a Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 28 Jul 2026 09:07:25 +0200 Subject: removing the logging from uci --- src/bot.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/bot.cpp') diff --git a/src/bot.cpp b/src/bot.cpp index d0730d8..8b9273e 100644 --- a/src/bot.cpp +++ b/src/bot.cpp @@ -4,7 +4,6 @@ #include #include #include -#include int PAWN_VALUE = 100; int KNIGHT_VALUE = 200; @@ -15,8 +14,6 @@ int MATE = 10000; const int SEARCH_DEPTH = 3; -int positions_consider = 0; - Move EngineGetBestMove(Game *b) { auto moves = GetLegalMoves(b); if (moves.size() == 0) { @@ -43,7 +40,6 @@ Move EngineGetBestMove(Game *b) { } } } - std::cout << "\nConsider: " << positions_consider << "\n"; return bestMove; } float minimax(int depth, Game *b, float alpha, float beta) { @@ -93,7 +89,6 @@ float minimax(int depth, Game *b, float alpha, float beta) { } float EvaluateBoardForWhite(Game *b) { - positions_consider++; float score = 0; bool isStaleMate = false; -- cgit v1.2.3