Home | History | Annotate | Download | only in include

Lines Matching defs:partition

1 /* List implementation of a partition of consecutive integers.
22 /* This package implements a partition of consecutive integers. The
26 on a partition are FIND, which takes an element, determines its
33 it is able to perform unions over all the classes in the partition
61 /* The number of elements in this partition. */
63 /* The elements in the partition. */
65 } *partition;
67 extern partition partition_new (int);
68 extern void partition_delete (partition);
69 extern int partition_union (partition, int, int);
70 extern void partition_print (partition, FILE*);