Skip to content

Commit

Permalink
Fix so that mind control doesnt spoil everything
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed Feb 26, 2015
1 parent 3d72611 commit c1bf8b6
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 1 deletion.
Binary file modified all_results.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified cheating_results.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified results.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion run_tournament.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def run_tournament(turns, repetitions, exclude_strategies, exclude_cheating, exc
cheating_strategies = [strategy() for strategy in axelrod.cheating_strategies]
graphs_to_plot['cheating_results.png'] = cheating_strategies
if not exclude_all:
all_strategies = strategies + cheating_strategies
all_strategies = [strategy() for strategy in axelrod.strategies] + [strategy() for strategy in axelrod.cheating_strategies]
graphs_to_plot['all_results'] = all_strategies

for plot in graphs_to_plot:
Expand Down

0 comments on commit c1bf8b6

Please sign in to comment.