Skip to content

Commit 6cb8d96

Browse files
committed
Add strategies that are implemented.
Closes #72.
1 parent 3f284a3 commit 6cb8d96

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
axelrod>=3.10.0
1+
axelrod>=3.11.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def read(*names, **kwargs):
5454
'Topic :: Utilities',
5555
],
5656
install_requires=[
57-
'axelrod >= 3.10.0',
57+
'axelrod >= 3.11.0',
5858
],
5959
python_requires=">=3.5",
6060
)

src/axelrod_fortran/strategies.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
'author': 'James W Friedman',
2828
'original_rank': 52},
2929
'k35r': {
30-
'axelrod-python_class': None,
30+
'axelrod-python_class': axl.Getzler,
3131
'stochastic': True,
3232
'author': 'Abraham Getzler',
3333
'original_rank': 11},
@@ -57,7 +57,7 @@
5757
'author': 'Robert Adams',
5858
'original_rank': 35},
5959
'k41r': {
60-
'axelrod-python_class': None,
60+
'axelrod-python_class': axl.Weiner,
6161
'stochastic': False,
6262
'author': 'Herb Weiner',
6363
'original_rank': 7},
@@ -152,7 +152,7 @@
152152
'author': 'Leslie Downing',
153153
'original_rank': 40},
154154
'k60r': {
155-
'axelrod-python_class': None,
155+
'axelrod-python_class': axl.GraaskampKatzen,
156156
'stochastic': False,
157157
'author': 'Jim Graaskamp and Ken Katzen',
158158
'original_rank': 6},
@@ -192,7 +192,7 @@
192192
'author': 'Craig Feathers',
193193
'original_rank': 27},
194194
'k68r': {
195-
'axelrod-python_class': None,
195+
'axelrod-python_class': axl.Leyvraz,
196196
'stochastic': True,
197197
'author': 'Fransois Leyvraz',
198198
'original_rank': 12},
@@ -212,7 +212,7 @@
212212
'author': 'James E Hall',
213213
'original_rank': 60},
214214
'k72r': {
215-
'axelrod-python_class': None,
215+
'axelrod-python_class': axl.White,
216216
'stochastic': True,
217217
'author': 'Edward C White Jr',
218218
'original_rank': 13},
@@ -232,7 +232,7 @@
232232
'author': 'Edward Friedland',
233233
'original_rank': None},
234234
'k75r': {
235-
'axelrod-python_class': None,
235+
'axelrod-python_class': axl.Harrington,
236236
'stochastic': True,
237237
'author': 'Paul D Harrington',
238238
'original_rank': 8},
@@ -272,12 +272,12 @@
272272
'author': 'Robert A Leyland',
273273
'original_rank': 49},
274274
'k83r': {
275-
'axelrod-python_class': None,
275+
'axelrod-python_class': axl.Black,
276276
'stochastic': True,
277277
'author': 'Paul E Black',
278278
'original_rank': 15},
279279
'k84r': {
280-
'axelrod-python_class': None,
280+
'axelrod-python_class': axl.MoreTidemanAndChieruzzi,
281281
'stochastic': False,
282282
'author': 'T Nicolaus Tideman and Paula Chieruzz',
283283
'original_rank': 9},

0 commit comments

Comments
 (0)