From 0274f44647f366b67c87649bfac033fe1324743f Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Thu, 6 Feb 2025 23:46:00 +0100 Subject: [PATCH] minor fix --- cpp/src/controller/ai_vs_ai.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/controller/ai_vs_ai.cpp b/cpp/src/controller/ai_vs_ai.cpp index c6feaf6..3571547 100644 --- a/cpp/src/controller/ai_vs_ai.cpp +++ b/cpp/src/controller/ai_vs_ai.cpp @@ -14,7 +14,7 @@ void AIvsAIController::start() { ai::AI* current_player; while (!board.is_terminal()) { current_player = board.white_to_play ? &p1 : &p2; - Move move = current_player->search(board, board.white_to_play); + Move move = current_player->search(board); make_move(move); }