File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class MindReader(Player):
23
23
classifier = {
24
24
"memory_depth" : float ("inf" ),
25
25
"stochastic" : False ,
26
- "makes_use_of" : set () ,
26
+ "makes_use_of" : { "game" } ,
27
27
"long_run_time" : False ,
28
28
"inspects_source" : True , # Finds out what opponent will do
29
29
"manipulates_source" : False ,
@@ -61,7 +61,7 @@ class ProtectedMindReader(MindReader):
61
61
classifier = {
62
62
"memory_depth" : float ("inf" ),
63
63
"stochastic" : False ,
64
- "makes_use_of" : set () ,
64
+ "makes_use_of" : { "game" } ,
65
65
"long_run_time" : False ,
66
66
"inspects_source" : True , # Finds out what opponent will do
67
67
"manipulates_source" : True , # Stops opponent's strategy
@@ -91,7 +91,7 @@ class MirrorMindReader(ProtectedMindReader):
91
91
classifier = {
92
92
"memory_depth" : float ("inf" ),
93
93
"stochastic" : False ,
94
- "makes_use_of" : set () ,
94
+ "makes_use_of" : { "game" } ,
95
95
"long_run_time" : False ,
96
96
"inspects_source" : True , # Reads and copies the source of the opponent
97
97
"manipulates_source" : True , # Changes own source dynamically
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ class TestMindReader(TestPlayer):
15
15
expected_classifier = {
16
16
"memory_depth" : float ("inf" ),
17
17
"stochastic" : False ,
18
- "makes_use_of" : set () ,
18
+ "makes_use_of" : { "game" } ,
19
19
"long_run_time" : False ,
20
20
"inspects_source" : True ,
21
21
"manipulates_source" : False ,
@@ -101,7 +101,7 @@ class TestProtectedMindReader(TestPlayer):
101
101
expected_classifier = {
102
102
"memory_depth" : float ("inf" ),
103
103
"stochastic" : False ,
104
- "makes_use_of" : set () ,
104
+ "makes_use_of" : { "game" } ,
105
105
"long_run_time" : False ,
106
106
"inspects_source" : True , # Finds out what opponent will do
107
107
"manipulates_source" : True , # Stops opponent's strategy
@@ -145,7 +145,7 @@ class TestMirrorMindReader(TestPlayer):
145
145
expected_classifier = {
146
146
"memory_depth" : float ("inf" ),
147
147
"stochastic" : False ,
148
- "makes_use_of" : set () ,
148
+ "makes_use_of" : { "game" } ,
149
149
"long_run_time" : False ,
150
150
"inspects_source" : True , # reading and copying the source of the component
151
151
"manipulates_source" : True , # changing own source dynamically
You can’t perform that action at this time.
0 commit comments