Revole some debug log
This commit is contained in:
parent
59047be8d5
commit
eb29f45de2
1 changed files with 0 additions and 8 deletions
|
@ -188,10 +188,6 @@ class AlphabetaPlayerEngine(PlayerEngine):
|
|||
nodes += n
|
||||
leafs += l
|
||||
if alpha >= beta:
|
||||
self.logger.debug("\t - Beta pruning - alpha:{} / beta:{}".format(
|
||||
alpha,
|
||||
beta
|
||||
))
|
||||
return beta, nodes, leafs
|
||||
return alpha, nodes, leafs
|
||||
|
||||
|
@ -205,10 +201,6 @@ class AlphabetaPlayerEngine(PlayerEngine):
|
|||
nodes += n
|
||||
leafs += l
|
||||
if alpha >= beta:
|
||||
self.logger.debug("\t - Alpha pruning | alpha:{} | beta:{}".format(
|
||||
alpha,
|
||||
beta
|
||||
))
|
||||
return alpha, nodes, leafs
|
||||
return beta, nodes, leafs
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue