sig   module type ATTR =     sig       type t       type domain       type elt       type event       val dom : Facile.Var.ATTR.t -> Facile.Var.ATTR.domain       val on_refine : Facile.Var.ATTR.event       val on_subst : Facile.Var.ATTR.event       val on_min : Facile.Var.ATTR.event       val on_max : Facile.Var.ATTR.event       val fprint : Pervasives.out_channel -> Facile.Var.ATTR.t -> unit       val min : Facile.Var.ATTR.t -> Facile.Var.ATTR.elt       val max : Facile.Var.ATTR.t -> Facile.Var.ATTR.elt       val member : Facile.Var.ATTR.t -> Facile.Var.ATTR.elt -> bool       val id : Facile.Var.ATTR.t -> int       val constraints_number : Facile.Var.ATTR.t -> int       val size : Facile.Var.ATTR.t -> int     end   module Attr :     sig       type t       type domain = Domain.t       type elt = int       type event       val dom : t -> domain       val on_refine : event       val on_subst : event       val on_min : event       val on_max : event       val fprint : out_channel -> t -> unit       val min : t -> elt       val max : t -> elt       val member : t -> elt -> bool       val id : t -> int       val constraints_number : t -> int       val size : t -> int     end   module SetAttr :     sig       type t       type domain = SetDomain.t       type elt = SetDomain.S.t       type event       val dom : t -> domain       val on_refine : event       val on_subst : event       val on_min : event       val on_max : event       val fprint : out_channel -> t -> unit       val min : t -> elt       val max : t -> elt       val member : t -> elt -> bool       val id : t -> int       val constraints_number : t -> int       val size : t -> int     end   type ('a, 'b) concrete = Unk of '| Val of 'b   module type BASICFD =     sig       type t       type attr       type domain       type elt       type event       val create :         ?name:string -> Facile.Var.BASICFD.domain -> Facile.Var.BASICFD.t       val interval :         ?name:string ->         Facile.Var.BASICFD.elt ->         Facile.Var.BASICFD.elt -> Facile.Var.BASICFD.t       val array :         ?name:string ->         int ->         Facile.Var.BASICFD.elt ->         Facile.Var.BASICFD.elt -> Facile.Var.BASICFD.t array       val elt : Facile.Var.BASICFD.elt -> Facile.Var.BASICFD.t       val is_var : Facile.Var.BASICFD.t -> bool       val is_bound : Facile.Var.BASICFD.t -> bool       val value :         Facile.Var.BASICFD.t ->         (Facile.Var.BASICFD.attr, Facile.Var.BASICFD.elt) Facile.Var.concrete       val min : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt       val max : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt       val min_max :         Facile.Var.BASICFD.t ->         Facile.Var.BASICFD.elt * Facile.Var.BASICFD.elt       val elt_value : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt       val int_value : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt       val size : Facile.Var.BASICFD.t -> int       val member : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> bool       val id : Facile.Var.BASICFD.t -> int       val name : Facile.Var.BASICFD.t -> string       val compare : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.t -> int       val equal : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.t -> bool       val fprint : Pervasives.out_channel -> Facile.Var.BASICFD.t -> unit       val fprint_array :         Pervasives.out_channel -> Facile.Var.BASICFD.t array -> unit       val unify : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> unit       val refine : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.domain -> unit       val refine_low : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> unit       val refine_up : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> unit       val refine_low_up :         Facile.Var.BASICFD.t ->         Facile.Var.BASICFD.elt -> Facile.Var.BASICFD.elt -> unit       val on_refine : Facile.Var.BASICFD.event       val on_subst : Facile.Var.BASICFD.event       val on_min : Facile.Var.BASICFD.event       val on_max : Facile.Var.BASICFD.event       val delay :         Facile.Var.BASICFD.event list ->         Facile.Var.BASICFD.t -> ?waking_id:int -> Facile.Cstr.t -> unit       val int : Facile.Var.BASICFD.elt -> Facile.Var.BASICFD.t       val subst : Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> unit       val unify_cstr :         Facile.Var.BASICFD.t -> Facile.Var.BASICFD.elt -> Facile.Cstr.t     end   module type FD =     sig       type t       type attr       type domain       type elt       type event       val create : ?name:string -> domain -> t       val interval : ?name:string -> elt -> elt -> t       val array : ?name:string -> int -> elt -> elt -> t array       val elt : elt -> t       val is_var : t -> bool       val is_bound : t -> bool       val value : t -> (attr, elt) concrete       val min : t -> elt       val max : t -> elt       val min_max : t -> elt * elt       val elt_value : t -> elt       val int_value : t -> elt       val size : t -> int       val member : t -> elt -> bool       val id : t -> int       val name : t -> string       val compare : t -> t -> int       val equal : t -> t -> bool       val fprint : out_channel -> t -> unit       val fprint_array : out_channel -> t array -> unit       val unify : t -> elt -> unit       val refine : t -> domain -> unit       val refine_low : t -> elt -> unit       val refine_up : t -> elt -> unit       val refine_low_up : t -> elt -> elt -> unit       val on_refine : event       val on_subst : event       val on_min : event       val on_max : event       val delay : event list -> t -> ?waking_id:int -> Cstr.t -> unit       val int : elt -> t       val subst : t -> elt -> unit       val unify_cstr : t -> elt -> Cstr.t       val remove : t -> elt -> unit       val values : t -> elt list       val iter : (elt -> unit) -> t -> unit     end   module Fd :     sig       type t       type attr = Attr.t       type domain = Domain.t       type elt = Domain.elt       type event = Attr.event       val create : ?name:string -> domain -> t       val interval : ?name:string -> elt -> elt -> t       val array : ?name:string -> int -> elt -> elt -> t array       val elt : elt -> t       val is_var : t -> bool       val is_bound : t -> bool       val value : t -> (attr, elt) concrete       val min : t -> elt       val max : t -> elt       val min_max : t -> elt * elt       val elt_value : t -> elt       val int_value : t -> elt       val size : t -> int       val member : t -> elt -> bool       val id : t -> int       val name : t -> string       val compare : t -> t -> int       val equal : t -> t -> bool       val fprint : out_channel -> t -> unit       val fprint_array : out_channel -> t array -> unit       val unify : t -> elt -> unit       val refine : t -> domain -> unit       val refine_low : t -> elt -> unit       val refine_up : t -> elt -> unit       val refine_low_up : t -> elt -> elt -> unit       val on_refine : event       val on_subst : event       val on_min : event       val on_max : event       val delay : event list -> t -> ?waking_id:int -> Cstr.t -> unit       val int : elt -> t       val subst : t -> elt -> unit       val unify_cstr : t -> elt -> Cstr.t       val remove : t -> elt -> unit       val values : t -> elt list       val iter : (elt -> unit) -> t -> unit     end   module SetFd :     sig       type t       type attr = SetAttr.t       type domain = SetDomain.t       type elt = SetDomain.S.t       type event = SetAttr.event       val create : ?name:string -> domain -> t       val interval : ?name:string -> elt -> elt -> t       val array : ?name:string -> int -> elt -> elt -> t array       val elt : elt -> t       val is_var : t -> bool       val is_bound : t -> bool       val value : t -> (attr, elt) concrete       val min : t -> elt       val max : t -> elt       val min_max : t -> elt * elt       val elt_value : t -> elt       val int_value : t -> elt       val size : t -> int       val member : t -> elt -> bool       val id : t -> int       val name : t -> string       val compare : t -> t -> int       val equal : t -> t -> bool       val fprint : out_channel -> t -> unit       val fprint_array : out_channel -> t array -> unit       val unify : t -> elt -> unit       val refine : t -> domain -> unit       val refine_low : t -> elt -> unit       val refine_up : t -> elt -> unit       val refine_low_up : t -> elt -> elt -> unit       val on_refine : event       val on_subst : event       val on_min : event       val on_max : event       val delay : event list -> t -> ?waking_id:int -> Cstr.t -> unit       val int : elt -> t       val subst : t -> elt -> unit       val unify_cstr : t -> elt -> Cstr.t     end   val delay :     Facile.Var.Attr.event list ->     Facile.Var.Fd.t -> ?waking_id:int -> Facile.Cstr.t -> unit end