Skip to content

Commit 0f8140f

Browse files
authored
Merge pull request #33 from Axelrod-Python/remove-assumed-implementations
Remove assumed implementations.
2 parents e015208 + 6f7e2eb commit 0f8140f

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

src/axelrod_fortran/strategies.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
'author': None,
8383
'original_rank': None},
8484
'k46r': {
85-
'axelrod-python_class': axl.Eatherley,
85+
'axelrod-python_class': None,
8686
'stochastic': True,
8787
'author': None,
8888
'original_rank': None},
@@ -137,7 +137,7 @@
137137
'author': None,
138138
'original_rank': None},
139139
'k57r': {
140-
'axelrod-python_class': axl.Nydegger,
140+
'axelrod-python_class': None,
141141
'stochastic': False,
142142
'author': None,
143143
'original_rank': None},
@@ -147,7 +147,7 @@
147147
'author': None,
148148
'original_rank': None},
149149
'k59r': {
150-
'axelrod-python_class': axl.RevisedDowning,
150+
'axelrod-python_class': None,
151151
'stochastic': False,
152152
'author': None,
153153
'original_rank': None},
@@ -157,7 +157,7 @@
157157
'author': None,
158158
'original_rank': None},
159159
'k61r': {
160-
'axelrod-python_class': axl.Champion,
160+
'axelrod-python_class': None,
161161
'stochastic': True,
162162
'author': None,
163163
'original_rank': None},
@@ -197,7 +197,7 @@
197197
'author': None,
198198
'original_rank': None},
199199
'k69r': {
200-
'axelrod-python_class': axl.Joss,
200+
'axelrod-python_class': None,
201201
'stochastic': True,
202202
'author': None,
203203
'original_rank': None},
@@ -237,12 +237,12 @@
237237
'author': None,
238238
'original_rank': None},
239239
'k76r': {
240-
'axelrod-python_class': axl.Tester,
240+
'axelrod-python_class': None,
241241
'stochastic': False,
242242
'author': None,
243243
'original_rank': None},
244244
'k77r': {
245-
'axelrod-python_class': axl.Feld,
245+
'axelrod-python_class': None,
246246
'stochastic': True,
247247
'author': None,
248248
'original_rank': None},
@@ -322,7 +322,7 @@
322322
'author': None,
323323
'original_rank': None},
324324
'k93r': {
325-
'axelrod-python_class': axl.UnnamedStrategy,
325+
'axelrod-python_class': None,
326326
'stochastic': True,
327327
'author': None,
328328
'original_rank': None},

tests/test_player.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,12 +118,10 @@ def test_implemented_strategies():
118118
Test that the deterministic strategies that are implemented in Axelrod
119119
give the same outcomes.
120120
"""
121-
known_failures = ["k57r", "k59r", "k86r"]
122121
for strategy, dictionary in characteristics.items():
123122
axelrod_class = dictionary["axelrod-python_class"]
124123
player = Player(strategy)
125124
if (axelrod_class is not None and
126-
strategy not in known_failures and
127125
player.classifier["stochastic"] is False):
128126
axl_player = axelrod_class()
129127
for opponent_strategy in basic_strategies:

0 commit comments

Comments
 (0)