File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ strategies::
38
38
... }
39
39
>>> strategies = axl.filtered_strategies(filterset)
40
40
>>> len(strategies)
41
- 43
41
+ 35
42
42
43
43
44
44
Or, to find out how many strategy only use 1 turn worth of memory to
@@ -49,7 +49,7 @@ make a decision::
49
49
... }
50
50
>>> strategies = axl.filtered_strategies(filterset)
51
51
>>> len(strategies)
52
- 24
52
+ 41
53
53
54
54
Mutliple filter can be specified within the filterset dictionary. To specify a
55
55
range of memory_depth values, we can use the 'min_memory_depth' and
@@ -72,7 +72,7 @@ length of each match of the tournament::
72
72
... }
73
73
>>> strategies = axl.filtered_strategies(filterset)
74
74
>>> len(strategies)
75
- 10
75
+ 4
76
76
77
77
Note that in the filterset dictionary, the value for the 'makes_use_of' key
78
78
must be a list. Here is how we might identify the number of strategies that use
@@ -83,7 +83,7 @@ both the length of the tournament and the game being played::
83
83
... }
84
84
>>> strategies = axl.filtered_strategies(filterset)
85
85
>>> len(strategies)
86
- 10
86
+ 0
87
87
88
88
Some strategies have been classified as having a particularly long run time::
89
89
You can’t perform that action at this time.
0 commit comments