-
Notifications
You must be signed in to change notification settings - Fork 271
/
Copy pathgrudger.py
312 lines (255 loc) · 8.36 KB
/
grudger.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
from axelrod.action import Action
from axelrod.player import Player
C, D = Action.C, Action.D
class Grudger(Player):
"""
A player starts by cooperating however will defect if at any point the
opponent has defected.
This strategy came 7th in Axelrod's original tournament.
Names:
- Friedman's strategy: [Axelrod1980]_
- Grudger: [Li2011]_
- Grim: [Berg2015]_
- Grim Trigger: [Banks1990]_
- Spite: [Beaufils1997]_
- Spiteful: [Mathieu2015]_
- Vengeful: [Ashlock2009]_
"""
name = "Grudger"
classifier = {
"memory_depth": float('inf'),
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
@staticmethod
def strategy(opponent: Player) -> Action:
"""Begins by playing C, then plays D for the remaining rounds if the
opponent ever plays D."""
if opponent.defections:
return D
return C
class ForgetfulGrudger(Player):
"""
A player starts by cooperating however will defect if at any point the
opponent has defected, but forgets after mem_length matches.
Names:
- Forgetful Grudger: Original name by Geraint Palmer
"""
name = "Forgetful Grudger"
classifier = {
"memory_depth": 10,
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
def __init__(self) -> None:
"""Initialised the player."""
super().__init__()
self.mem_length = 10
self.grudged = False
self.grudge_memory = 0
def strategy(self, opponent: Player) -> Action:
"""Begins by playing C, then plays D for mem_length rounds if the
opponent ever plays D."""
if self.grudge_memory == self.mem_length:
self.grudge_memory = 0
self.grudged = False
if D in opponent.history[-1:]:
self.grudged = True
if self.grudged:
self.grudge_memory += 1
return D
return C
class OppositeGrudger(Player):
"""
A player starts by defecting however will cooperate if at any point the
opponent has cooperated.
Names:
- Opposite Grudger: Original name by Geraint Palmer
"""
name = "Opposite Grudger"
classifier = {
"memory_depth": float("inf"), # Long memory
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
@staticmethod
def strategy(opponent: Player) -> Action:
"""Begins by playing D, then plays C for the remaining rounds if the
opponent ever plays C."""
if opponent.cooperations:
return C
return D
class Aggravater(Player):
"""
Grudger, except that it defects on the first 3 turns
Names
- Aggravater: Original name by Thomas Campbell
"""
name = "Aggravater"
classifier = {
"memory_depth": float("inf"), # Long memory
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
@staticmethod
def strategy(opponent: Player) -> Action:
if len(opponent.history) < 3:
return D
elif opponent.defections:
return D
return C
class SoftGrudger(Player):
"""
A modification of the Grudger strategy. Instead of punishing by always
defecting: punishes by playing: D, D, D, D, C, C. (Will continue to
cooperate afterwards).
- Soft Grudger (SGRIM): [Li2011]_
"""
name = "Soft Grudger"
classifier = {
"memory_depth": 6,
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
def __init__(self) -> None:
"""Initialised the player."""
super().__init__()
self.grudged = False
self.grudge_memory = 0
def strategy(self, opponent: Player) -> Action:
"""Begins by playing C, then plays D, D, D, D, C, C against a defection
"""
if self.grudged:
strategy = [D, D, D, C, C][self.grudge_memory]
self.grudge_memory += 1
if self.grudge_memory == 5:
self.grudge_memory = 0
self.grudged = False
return strategy
elif D in opponent.history[-1:]:
self.grudged = True
return D
return C
class GrudgerAlternator(Player):
"""
A player starts by cooperating until the first opponents defection,
then alternates D-C.
Names:
- c_then_per_dc: [Prison1998]_
- Grudger Alternator: Original name by Geraint Palmer
"""
name = "GrudgerAlternator"
classifier = {
"memory_depth": float("inf"), # Long memory
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
def strategy(self, opponent: Player) -> Action:
"""Begins by playing C, then plays Alternator for the remaining rounds
if the opponent ever plays D."""
if opponent.defections:
if self.history[-1] == C:
return D
return C
class EasyGo(Player):
"""
A player starts by defecting however will cooperate if at any point the
opponent has defected.
Names:
- Easy Go: [Prison1998]_
- Reverse Grudger (RGRIM): [Li2011]_
- Fool Me Forever: [Harper2017]_
"""
name = "EasyGo"
classifier = {
"memory_depth": float("inf"), # Long memory
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
@staticmethod
def strategy(opponent: Player) -> Action:
"""Begins by playing D, then plays C for the remaining rounds if the
opponent ever plays D."""
if opponent.defections:
return C
return D
class GeneralSoftGrudger(Player):
"""
A generalization of the SoftGrudger strategy. SoftGrudger punishes by
playing: D, D, D, D, C, C. after a defection by the opponent.
GeneralSoftGrudger only punishes after its opponent defects a specified
amount of times consecutively. The punishment is in the form of a series of
defections followed by a 'penance' of a series of consecutive cooperations.
Names:
- General Soft Grudger: Original Name by J. Taylor Smith
"""
name = "General Soft Grudger"
classifier = {
"memory_depth": float("inf"), # Long memory
"stochastic": False,
"long_run_time": False,
"inspects_source": False,
"manipulates_source": False,
"manipulates_state": False,
}
def __init__(self, n: int = 1, d: int = 4, c: int = 2) -> None:
"""
Parameters
----------
n: int
The number of defections by the opponent to trigger punishment
d: int
The number of defections to punish the opponent
c: int
The number of cooperations in the 'penance' stage
Special Cases
-------------
GeneralSoftGrudger(1,4,2) is equivalent to SoftGrudger
"""
super().__init__()
self.n = n
self.d = d
self.c = c
self.grudge = [D] * (d - 1) + [C] * c
self.grudged = False
self.grudge_memory = 0
def strategy(self, opponent: Player) -> Action:
"""
Punishes after its opponent defects 'n' times consecutively.
The punishment is in the form of 'd' defections followed by a penance of
'c' consecutive cooperations.
"""
if self.grudged:
strategy = self.grudge[self.grudge_memory]
self.grudge_memory += 1
if self.grudge_memory == len(self.grudge):
self.grudged = False
self.grudge_memory = 0
return strategy
elif [D] * self.n == opponent.history[-self.n :]:
self.grudged = True
return D
return C
def __repr__(self) -> str:
return "%s: n=%s,d=%s,c=%s" % (self.name, self.n, self.d, self.c)