Skip to content

Commit

Permalink
Add a docstring to strategies that do not obey axl
Browse files Browse the repository at this point in the history
This indicates that time should not be spent optimising them.

See #941
  • Loading branch information
drvinceknight committed Mar 29, 2017
1 parent 9878d0c commit 483a256
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions axelrod/strategies/darwin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
The player class in this module does not obey standard rules of the IPD (as
indicated by their classifier). We do not recommend putting a lot of time in to
optimising it.
"""
import inspect
from axelrod.actions import Action, Actions
from axelrod.player import Player
Expand Down
5 changes: 5 additions & 0 deletions axelrod/strategies/geller.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
The player classes in this module do not obey standard rules of the IPD (as
indicated by their classifier). We do not recommend putting a lot of time in to
optimising them.
"""
import inspect

from axelrod.actions import Actions, Action
Expand Down
5 changes: 5 additions & 0 deletions axelrod/strategies/mindreader.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
The player classes in this module do not obey standard rules of the IPD (as
indicated by their classifier). We do not recommend putting a lot of time in to
optimising them.
"""
import inspect

from axelrod.actions import Actions, Action
Expand Down

0 comments on commit 483a256

Please sign in to comment.