partition {BGSIMD} | R Documentation |
The function computes the coarsest partition of a finite sequence of sets for which only consecutive sets may overlap.
partition(ms)
ms |
the sequence of finite sets whose coarsest partition is required. These sets must be entered in the order under which only consecutive sets may have non-empty intersection. |
A list comprising the sets that make up the coarsest partition.
Kwang Woo Ahn and Kung-Sik Chan
part
and block.gibbs
ms<-list(c(3,4),c(5,6,7),c(6,7,8,9)) partition(ms)