aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-29 11:30:14 +0200
committerAdam <adammegarules1@gmail.com>2026-07-29 11:30:14 +0200
commit828b5a414a58d1b09c201fd33cb465e768589610 (patch)
treee4d1e4f5ecb0bb8a7b8a368fbea3fff351e57a30 /src
parentd2f8bc8b1ab4da651e66c729d31c3c0920c761a8 (diff)
i hate something
Diffstat (limited to 'src')
-rw-r--r--src/bot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.cpp b/src/bot.cpp
index f114f36..5a4601e 100644
--- a/src/bot.cpp
+++ b/src/bot.cpp
@@ -158,7 +158,7 @@ float minimax(int depth, Game *b, float alpha, float beta) {
alpha = std::max(alpha, bestEval);
if (alpha >= beta) {
- break;
+ break; // *snips*
}
}
} else {