Fix error in variable name for AlphaBeta with ID
This commit is contained in:
parent
3d3f757f41
commit
d846549bb7
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ class AlphabetaPlayerEngine(PlayerEngine):
|
||||||
if value >= alpha:
|
if value >= alpha:
|
||||||
alpha = value
|
alpha = value
|
||||||
move = m
|
move = m
|
||||||
self._show_stats_info(move, alpha)
|
self._show_better_move(move, alpha)
|
||||||
|
|
||||||
self._show_stats_info(depth, nodes, leafs, value)
|
self._show_stats_info(depth, nodes, leafs, value)
|
||||||
return move, alpha
|
return move, alpha
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue