File tree Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Expand file tree Collapse file tree 2 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 82
82
'author' : None ,
83
83
'original_rank' : None },
84
84
'k46r' : {
85
- 'axelrod-python_class' : axl . Eatherley ,
85
+ 'axelrod-python_class' : None ,
86
86
'stochastic' : True ,
87
87
'author' : None ,
88
88
'original_rank' : None },
137
137
'author' : None ,
138
138
'original_rank' : None },
139
139
'k57r' : {
140
- 'axelrod-python_class' : axl . Nydegger ,
140
+ 'axelrod-python_class' : None ,
141
141
'stochastic' : False ,
142
142
'author' : None ,
143
143
'original_rank' : None },
147
147
'author' : None ,
148
148
'original_rank' : None },
149
149
'k59r' : {
150
- 'axelrod-python_class' : axl . RevisedDowning ,
150
+ 'axelrod-python_class' : None ,
151
151
'stochastic' : False ,
152
152
'author' : None ,
153
153
'original_rank' : None },
157
157
'author' : None ,
158
158
'original_rank' : None },
159
159
'k61r' : {
160
- 'axelrod-python_class' : axl . Champion ,
160
+ 'axelrod-python_class' : None ,
161
161
'stochastic' : True ,
162
162
'author' : None ,
163
163
'original_rank' : None },
197
197
'author' : None ,
198
198
'original_rank' : None },
199
199
'k69r' : {
200
- 'axelrod-python_class' : axl . Joss ,
200
+ 'axelrod-python_class' : None ,
201
201
'stochastic' : True ,
202
202
'author' : None ,
203
203
'original_rank' : None },
237
237
'author' : None ,
238
238
'original_rank' : None },
239
239
'k76r' : {
240
- 'axelrod-python_class' : axl . Tester ,
240
+ 'axelrod-python_class' : None ,
241
241
'stochastic' : False ,
242
242
'author' : None ,
243
243
'original_rank' : None },
244
244
'k77r' : {
245
- 'axelrod-python_class' : axl . Feld ,
245
+ 'axelrod-python_class' : None ,
246
246
'stochastic' : True ,
247
247
'author' : None ,
248
248
'original_rank' : None },
322
322
'author' : None ,
323
323
'original_rank' : None },
324
324
'k93r' : {
325
- 'axelrod-python_class' : axl . UnnamedStrategy ,
325
+ 'axelrod-python_class' : None ,
326
326
'stochastic' : True ,
327
327
'author' : None ,
328
328
'original_rank' : None },
Original file line number Diff line number Diff line change @@ -118,12 +118,10 @@ def test_implemented_strategies():
118
118
Test that the deterministic strategies that are implemented in Axelrod
119
119
give the same outcomes.
120
120
"""
121
- known_failures = ["k57r" , "k59r" , "k86r" ]
122
121
for strategy , dictionary in characteristics .items ():
123
122
axelrod_class = dictionary ["axelrod-python_class" ]
124
123
player = Player (strategy )
125
124
if (axelrod_class is not None and
126
- strategy not in known_failures and
127
125
player .classifier ["stochastic" ] is False ):
128
126
axl_player = axelrod_class ()
129
127
for opponent_strategy in basic_strategies :
You can’t perform that action at this time.
0 commit comments