From 51299b249588ca39a992870961e58a047f7b565a Mon Sep 17 00:00:00 2001 From: tbcdebug <33230390+tbcdebug@users.noreply.github.com> Date: Fri, 11 May 2018 11:41:04 +1000 Subject: [PATCH] comment in method alphabeta_search (#914) should be '# Body of alphabeta_search:' --- games.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games.py b/games.py index 23e785bab..36e68f7ce 100644 --- a/games.py +++ b/games.py @@ -113,7 +113,7 @@ def min_value(state, alpha, beta): beta = min(beta, v) return v - # Body of alphabeta_cutoff_search: + # Body of alphabeta_search: best_score = -infinity beta = infinity best_action = None