diff options
author | Joursoir <chat@joursoir.net> | 2021-03-12 22:16:44 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-03-12 22:16:44 +0000 |
commit | 5e67c04a0b81194835e1bbedc8ca52df0852694a (patch) | |
tree | 136ae5f5373231f5d8cd4d9ad53da229c610677b | |
parent | 729cff8f4e31601ee5b14a0052a5bfd6eff46659 (diff) | |
download | lp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.tar.gz lp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.tar.bz2 lp-gomoku-5e67c04a0b81194835e1bbedc8ca52df0852694a.zip |
delete junk
-rw-r--r-- | ai.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -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; } |