Skip to content

Commit

Permalink
comment in method alphabeta_search (#914)
Browse files Browse the repository at this point in the history
should be '# Body of alphabeta_search:'
  • Loading branch information
bochentan authored and norvig committed May 11, 2018
1 parent 8debcd8 commit 51299b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion games.py
Expand Up @@ -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
Expand Down

0 comments on commit 51299b2

Please sign in to comment.