From 164e52ffe3b4ea5e47a3c25cf2c7f082c03ba80e Mon Sep 17 00:00:00 2001 From: Adam Date: Thu, 30 Jul 2026 14:51:49 +0200 Subject: making bot better and 50 move rule aware --- src/bot.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bot.hpp') diff --git a/src/bot.hpp b/src/bot.hpp index 2a007db..382c9be 100644 --- a/src/bot.hpp +++ b/src/bot.hpp @@ -4,7 +4,7 @@ #include "board/board.hpp" #include Move EngineGetBestMove(Game *b, int depth); -float EvaluateBoardForWhite(Game *b, int depth); +float EvaluateBoardForWhite(Game *b); float minimax(int depth, Game *b, float alpha, float beta); int ScoreMove(const Game *board, const Move &move); std::vector GetSortedLegalMoves(Game *g); -- cgit v1.2.3