cutsets

cutsets(zdd)

Arguments

zdd

a zdd list object

Value

a list of integer vectors representing a family of sets (cutsets)

Examples

cutsets( zdd(3) | zdd(4) )
#> [[1]] #> [1] 3 #> #> [[2]] #> [1] 4 #>
cutsets( zdd(4) | zdd(3) )
#> [[1]] #> [1] 3 #> #> [[2]] #> [1] 4 #>
cutsets( zdd(4) | FALSE )
#> [[1]] #> [1] 4 #>
cutsets( zdd(4) | TRUE )
#> [[1]] #> NULL #>