Iterator
SetPartitions
generate set partitions with restricted growth strings
Calling Sequence
Parameters
Options
Description
Examples
References
Compatibility
SetPartitions(n, opts)
n
-
nonnegint; size of set to partition
opts
(optional) equation(s) of the form option = value; specify options for the SetPartitions command
compile = truefalse
True means compile the iterator. The default is true.
maxparts = nonnegint
Specifies the maximum number of parts in each partition. The default is n.
parts = integer
Specifies the number of parts in each partition. A value less than zero is ignored. The default is -1, which is ignored.
rank = nonnegint
Specify the starting rank of the iterator. The default is one. Passing a value greater than one causes the iterator to skip the lower ranks; this can be useful when parallelizing iterators. The starting rank reverts to one when the iterator is reset, reused, or copied.
The SetPartitions command returns an iterator that generates partitions of a set of integers from one to n. The output consists of the restricted growth strings of length n in lexicographic order.
A restricted growth string of length n corresponds to a partition of the set of integers 1 to n. Each integer in the output Array designates the set to which the index belongs; the sets are numbered starting at 0. For example, 0,0,1,2 corresponds to the partition 1,2,3,4.
Methods
In addition to the common iterator methods, this iterator object has the following methods. The self parameter is the iterator object.
Number(self): return the number of iterations required to step through the iterator, assuming it started at rank one.
Rank(self,L): return the rank of the current iteration. Optionally pass L, a list or one-dimensional rtable, and return its rank.
ToSets(v): convert the Array v from a restricted growth string to the corresponding list of sets of positive integers.
Unrank(self,rnk): return a one-dimensional Array corresponding to the iterator output with rank rnk.
with⁡Iterator:
Iterate through all partitions of 1,2,3,4.
M≔SetPartitions⁡4:
Print⁡M,showrank:
1: 0 0 0 0 2: 0 0 0 1 3: 0 0 1 0 4: 0 0 1 1 5: 0 0 1 2 6: 0 1 0 0 7: 0 1 0 1 8: 0 1 0 2 9: 0 1 1 0 10: 0 1 1 1 11: 0 1 1 2 12: 0 1 2 0 13: 0 1 2 1 14: 0 1 2 2 15: 0 1 2 3
Iterate through partitions with at most 3 parts.
N≔Object⁡M,maxparts=3:
Print⁡N,showrank:
1: 0 0 0 0 2: 0 0 0 1 3: 0 0 1 0 4: 0 0 1 1 5: 0 0 1 2 6: 0 1 0 0 7: 0 1 0 1 8: 0 1 0 2 9: 0 1 1 0 10: 0 1 1 1 11: 0 1 1 2 12: 0 1 2 0 13: 0 1 2 1 14: 0 1 2 2
Iterate through partitions with exactly 2 parts.
N≔Object⁡M,parts=2:
1: 0 0 0 1 2: 0 0 1 0 3: 0 0 1 1 4: 0 1 0 0 5: 0 1 0 1 6: 0 1 1 0 7: 0 1 1 1
Compute the number of iterations.
Number⁡M
15
Mapping of restricted growth strings to partitions
Print the correspondence between the restricted growth strings and the actual partitions. Use the ToSets method to do the conversion.
forVinSetPartitions⁡4doprintf⁡%d = %a\n,V,M:-ToSets⁡Venddo:
0 0 0 0 = [{1, 2, 3, 4}] 0 0 0 1 = [{1, 2, 3}, {4}] 0 0 1 0 = [{1, 2, 4}, {3}] 0 0 1 1 = [{1, 2}, {3, 4}] 0 0 1 2 = [{1, 2}, {3}, {4}] 0 1 0 0 = [{1, 3, 4}, {2}] 0 1 0 1 = [{1, 3}, {2, 4}] 0 1 0 2 = [{1, 3}, {2}, {4}] 0 1 1 0 = [{1, 4}, {2, 3}] 0 1 1 1 = [{1}, {2, 3, 4}] 0 1 1 2 = [{1}, {2, 3}, {4}] 0 1 2 0 = [{1, 4}, {2}, {3}] 0 1 2 1 = [{1}, {2, 4}, {3}] 0 1 2 2 = [{1}, {2}, {3, 4}] 0 1 2 3 = [{1}, {2}, {3}, {4}]
Knuth, Donald Ervin. The Art of Computer Programming, volume 4, fascicle 3; generating all combinations and partitions, sec. 7.2.1.5, generating all set partitions, algorithm H, restricted growth strings in lexicographic order, pp. 62-63 and p. 124 ex. 1.
The Iterator[SetPartitions] command was introduced in Maple 2016.
For more information on Maple 2016 changes, see Updates in Maple 2016.
The Iterator[SetPartitions] command was updated in Maple 2022.
The n parameter was updated in Maple 2022.
The maxparts and parts options were updated in Maple 2022.
See Also
combinat[setpartition]
Iterator[SetPartitionFixedSize]
Iterator[SetPartitionGrayCode]
Download Help Document