Skip to content

Commit 8c9a33e

Browse files
committed
[#696] Correct expected results
1 parent c360dde commit 8c9a33e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/tutorials/advanced/classification_of_strategies.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ strategies::
3838
... }
3939
>>> strategies = axl.filtered_strategies(filterset)
4040
>>> len(strategies)
41-
43
41+
35
4242

4343

4444
Or, to find out how many strategy only use 1 turn worth of memory to
@@ -49,7 +49,7 @@ make a decision::
4949
... }
5050
>>> strategies = axl.filtered_strategies(filterset)
5151
>>> len(strategies)
52-
24
52+
41
5353

5454
Mutliple filter can be specified within the filterset dictionary. To specify a
5555
range of memory_depth values, we can use the 'min_memory_depth' and
@@ -72,7 +72,7 @@ length of each match of the tournament::
7272
... }
7373
>>> strategies = axl.filtered_strategies(filterset)
7474
>>> len(strategies)
75-
10
75+
4
7676

7777
Note that in the filterset dictionary, the value for the 'makes_use_of' key
7878
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::
8383
... }
8484
>>> strategies = axl.filtered_strategies(filterset)
8585
>>> len(strategies)
86-
10
86+
0
8787

8888
Some strategies have been classified as having a particularly long run time::
8989

0 commit comments

Comments
 (0)