summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ai.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/ai.cpp b/ai.cpp
index 73b4d8e..1cab7ef 100644
--- a/ai.cpp
+++ b/ai.cpp
@@ -104,7 +104,6 @@ int AI::MinMax(GameField field, int alpha, int beta, int depth)
field.UndoMove(y, x);
if(result < score)
score = result;
- fprintf(stderr, "alpha (%d) >= beta (%d)?\n", alpha, score);
if(alpha >= score)
return score;
}