summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoursoir <chat@joursoir.net>2021-03-12 22:16:44 +0000
committerJoursoir <chat@joursoir.net>2021-03-12 22:16:44 +0000
commit5e67c04a0b81194835e1bbedc8ca52df0852694a (patch)
tree136ae5f5373231f5d8cd4d9ad53da229c610677b
parent729cff8f4e31601ee5b14a0052a5bfd6eff46659 (diff)
downloadlp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.tar.gz
lp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.tar.bz2
lp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.zip
delete junk
-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;
}