module type FD =sig..end
Extended signature for finite domain variable (with added functions irrelevant to set variables).
include Fcl_var.BASICFD
val remove : t -> elt -> unitremove v a removes a from the domain of v. Leaves the domain
unchanged if a does not belong to it.
val values : t -> elt listvalues v returns the list of all integers in the domain of v. If
v is instantiated to n, returns the singleton list containing n.
val iter : (elt -> unit) -> t -> unititer f v iterates f on each integer in the domain of v.