@@ -16,7 +16,7 @@ class Davis(Player):
1616 defecting if at any point the opponent has defected."""
1717
1818 name = 'Davis'
19- behaviour = {
19+ classifier = {
2020 'memory_depth' : float ('inf' ), # Long memory
2121 'stochastic' : False ,
2222 'inspects_source' : False ,
@@ -45,7 +45,7 @@ class Feld(Player):
4545 """
4646
4747 name = "Feld"
48- behaviour = {
48+ classifier = {
4949 'memory_depth' : 200 , # Varies actually, eventually becomes depth 1
5050 'stochastic' : False ,
5151 'inspects_source' : False ,
@@ -90,7 +90,7 @@ class Shubik(Player):
9090 """
9191
9292 name = 'Shubik'
93- behaviour = {
93+ classifier = {
9494 'memory_depth' : float ('inf' ),
9595 'stochastic' : False ,
9696 'inspects_source' : False ,
@@ -147,7 +147,7 @@ class Tullock(Player):
147147 than the opponent has in previous rounds."""
148148
149149 name = "Tullock"
150- behaviour = {
150+ classifier = {
151151 'memory_depth' : 11 , # long memory, modified by init
152152 'stochastic' : False ,
153153 'inspects_source' : False ,
@@ -181,7 +181,7 @@ class Champion(Player):
181181 """
182182
183183 name = "Champion"
184- behaviour = {
184+ classifier = {
185185 'memory_depth' : float ('inf' ),
186186 'stochastic' : False ,
187187 'inspects_source' : False ,
@@ -215,7 +215,7 @@ class Eatherley(Player):
215215 """
216216
217217 name = "Eatherley"
218- behaviour = {
218+ classifier = {
219219 'memory_depth' : float ('inf' ),
220220 'stochastic' : False ,
221221 'inspects_source' : False ,
@@ -248,7 +248,7 @@ class Tester(Player):
248248 """
249249
250250 name = "Tester"
251- behaviour = {
251+ classifier = {
252252 'memory_depth' : float ('inf' ),
253253 'stochastic' : False ,
254254 'inspects_source' : False ,
0 commit comments