Skip to content

Commit aab4622

Browse files
authored
Merge pull request #1237 from Axelrod-Python/strategies-patch
MemoryDecay missing from the list of strategies
2 parents 583cc4d + 8874db0 commit aab4622

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

axelrod/strategies/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
)
3535

3636
all_strategies += [
37+
MemoryDecay,
3738
MetaHunter,
3839
MetaHunterAggressive,
3940
MetaMajority,

docs/tutorials/advanced/classification_of_strategies.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ strategies::
4747
... }
4848
>>> strategies = axl.filtered_strategies(filterset)
4949
>>> len(strategies)
50-
84
50+
85
5151

5252
Or, to find out how many strategies only use 1 turn worth of memory to
5353
make a decision::

0 commit comments

Comments
 (0)