Fix error in global time calcution
Was not reseted
This commit is contained in:
parent
fe185631b3
commit
1b984f7a5e
1 changed files with 2 additions and 2 deletions
|
@ -199,9 +199,9 @@ if __name__ == '__main__':
|
|||
)
|
||||
recursions = args.recursions
|
||||
parties = []
|
||||
while recursions > 0:
|
||||
white_time = 0
|
||||
black_time = 0
|
||||
while recursions > 0:
|
||||
while (not game.is_game_over()):
|
||||
start_time = time.time()
|
||||
if game._nextPlayer == 1:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue