module Set:sig..end
Functions to manipulate Set expressions
val mk_sort : context -> Sort.sort -> Sort.sortCreate a set type.
val is_union : Expr.expr -> boolIndicates whether the term is set union
val is_intersect : Expr.expr -> boolIndicates whether the term is set intersection
val is_difference : Expr.expr -> boolIndicates whether the term is set difference
val is_complement : Expr.expr -> boolIndicates whether the term is set complement
val is_subset : Expr.expr -> boolIndicates whether the term is set subset
val mk_empty : context -> Sort.sort -> Expr.exprCreate an empty set.
val mk_full : context -> Sort.sort -> Expr.exprCreate the full set.
val mk_set_add : context -> Expr.expr -> Expr.expr -> Expr.exprAdd an element to the set.
val mk_del : context -> Expr.expr -> Expr.expr -> Expr.exprRemove an element from a set.
val mk_union : context -> Expr.expr list -> Expr.exprTake the union of a list of sets.
val mk_intersection : context -> Expr.expr list -> Expr.exprTake the intersection of a list of sets.
val mk_difference : context -> Expr.expr -> Expr.expr -> Expr.exprTake the difference between two sets.
val mk_complement : context -> Expr.expr -> Expr.exprTake the complement of a set.
val mk_membership : context -> Expr.expr -> Expr.expr -> Expr.exprCheck for set membership.
val mk_subset : context -> Expr.expr -> Expr.expr -> Expr.exprCheck for subsetness of sets.