Skip to content

Commit

Permalink
First principles definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
drvinceknight committed Dec 22, 2016
1 parent a4a129d commit 027ba53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions axelrod/strategies/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@

long_run_time_strategies = [s for s in all_strategies if
s().classifier['long_run_time']]
short_run_time_strategies = [s for s in strategies
if s not in long_run_time_strategies]
short_run_time_strategies = [s for s in strategies if not
s().classifier['long_run_time']]
cheating_strategies = [s for s in all_strategies if not obey_axelrod(s())]

ordinary_strategies = strategies # This is a legacy and will be removed
Expand Down

0 comments on commit 027ba53

Please sign in to comment.