From a47130e5d07615d98ccfcfeae859a730e51e9cfe Mon Sep 17 00:00:00 2001 From: Karma Riuk Date: Thu, 6 Feb 2025 20:41:17 +0100 Subject: [PATCH] fixed variable name --- cpp/src/model/ais/v1_simple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/model/ais/v1_simple.cpp b/cpp/src/model/ais/v1_simple.cpp index b4f7833..63560da 100644 --- a/cpp/src/model/ais/v1_simple.cpp +++ b/cpp/src/model/ais/v1_simple.cpp @@ -7,7 +7,7 @@ static int INFINITY = std::numeric_limits::max(); -Move ai::v1_simple::_search(const Board& b, bool am_black) { +Move ai::v1_simple::_search(const Board& b, bool am_white) { ThreadPool pool(std::thread::hardware_concurrency()); std::vector moves = b.all_legal_moves();