diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-28 09:07:25 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-28 09:07:25 +0200 |
| commit | bb42f7d438c088b18e953e38cb07d0cdf25f749a (patch) | |
| tree | db358c35d178ea3f29e1f8ee5c399009bdb3bae0 | |
| parent | ab198bd13a44344989c34ee1fda1e56fa00cbe1f (diff) | |
removing the logging from uci
| -rw-r--r-- | src/bot.cpp | 5 | ||||
| -rw-r--r-- | src/uci.cpp | 3 |
2 files changed, 3 insertions, 5 deletions
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 <algorithm> #include <cassert> #include <cmath> -#include <iostream> 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; diff --git a/src/uci.cpp b/src/uci.cpp index d436cb1..4825ece 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -87,6 +87,9 @@ void Uci() { if (cmd == "uci") { cout << "uciok\n"; cout.flush(); + } else if (cmd == "ucinewgame") { + game = + initBoard("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"); } else if (cmd == "isready") { cout << "readyok\n"; cout.flush(); |
