@@ -20,6 +20,7 @@ class Davis(Player):
2020 'memory_depth' : float ('inf' ), # Long memory
2121 'stochastic' : False ,
2222 'makes_use_of' : set (),
23+ 'long_run_time' : False ,
2324 'inspects_source' : False ,
2425 'manipulates_source' : False ,
2526 'manipulates_state' : False
@@ -58,6 +59,7 @@ class RevisedDowning(Player):
5859 'memory_depth' : float ('inf' ),
5960 'stochastic' : False ,
6061 'makes_use_of' : set (),
62+ 'long_run_time' : False ,
6163 'inspects_source' : False ,
6264 'manipulates_source' : False ,
6365 'manipulates_state' : False
@@ -134,6 +136,7 @@ class Feld(Player):
134136 'memory_depth' : 200 , # Varies actually, eventually becomes depth 1
135137 'stochastic' : True ,
136138 'makes_use_of' : set (),
139+ 'long_run_time' : False ,
137140 'inspects_source' : False ,
138141 'manipulates_source' : False ,
139142 'manipulates_state' : False
@@ -189,6 +192,7 @@ class Grofman(Player):
189192 'memory_depth' : float ('inf' ),
190193 'stochastic' : True ,
191194 'makes_use_of' : set (),
195+ 'long_run_time' : False ,
192196 'inspects_source' : False ,
193197 'manipulates_source' : False ,
194198 'manipulates_state' : False
@@ -260,6 +264,7 @@ class Nydegger(Player):
260264 'memory_depth' : 3 ,
261265 'stochastic' : False ,
262266 'makes_use_of' : set (),
267+ 'long_run_time' : False ,
263268 'inspects_source' : False ,
264269 'manipulates_source' : False ,
265270 'manipulates_state' : False
@@ -314,6 +319,7 @@ class Shubik(Player):
314319 'memory_depth' : float ('inf' ),
315320 'stochastic' : False ,
316321 'makes_use_of' : set (),
322+ 'long_run_time' : False ,
317323 'inspects_source' : False ,
318324 'manipulates_source' : False ,
319325 'manipulates_state' : False
@@ -373,6 +379,7 @@ class Tullock(Player):
373379 'memory_depth' : 11 , # long memory, modified by init
374380 'stochastic' : True ,
375381 'makes_use_of' : set (),
382+ 'long_run_time' : False ,
376383 'inspects_source' : False ,
377384 'manipulates_source' : False ,
378385 'manipulates_state' : False
@@ -427,6 +434,7 @@ class UnnamedStrategy(Player):
427434 'memory_depth' : 0 ,
428435 'stochastic' : True ,
429436 'makes_use_of' : set (),
437+ 'long_run_time' : False ,
430438 'inspects_source' : False ,
431439 'manipulates_source' : False ,
432440 'manipulates_state' : False
0 commit comments