Skip to content

Commit

Permalink
main updated
Browse files Browse the repository at this point in the history
  • Loading branch information
yurkovsk committed Dec 2, 2016
1 parent 963faaa commit 6bf025c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions train_and_test/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ def execute_game(seed):
if isinstance(v, AlphaBetaPlayer) else None): score_by_player[v]
for k, v in locals().items() if v in players
}
fileLogger.info('\n'.join(' {:100} : {} '.format(str(name), score)
for name, score in players_scores_by_names.items()) + '\nturns it took: ' + turn_count +
'\n' + '-' * 106 + '\n')
fileLogger.info('\n' + '\n'.join(' {:150} : {} '.format(str(name), score)
for name, score in players_scores_by_names.items()) +
'\n turns it took: {}\n'.format(turn_count) + ('-' * 156))


def main():
Expand Down

0 comments on commit 6bf025c

Please sign in to comment.