X-Git-Url: http://git.nguyen.vg/gitweb/?p=tatoo.git;a=blobdiff_plain;f=src%2Fptset.mli;h=632832c95788fdbdf9855e981baaa4b63d1c6a33;hp=df3825526103a4eb030ff088b0d4fc7897487ca7;hb=9a127b83fbb1171ebd36e6f42780093412a5e91a;hpb=cba2938d929fd5119b1491686ddc224d5af618c6 diff --git a/src/ptset.mli b/src/ptset.mli index df38255..632832c 100644 --- a/src/ptset.mli +++ b/src/ptset.mli @@ -13,12 +13,7 @@ (* *) (***********************************************************************) -module type S = - sig - include Sigs.Set - include Hcons.S with type t := t - end -(** Output signature of the {!Ptset.Make} and {!Ptset.Weak} functors. *) +include module type of Ptset_sig module Make (H : Hcons.Abstract) : S with type elt = H.t (** Builds an implementation of hashconsed sets of hashconsed elements. @@ -30,5 +25,5 @@ module Weak (H : Hcons.Abstract) : S with type elt = H.t with weak internal storage. See {!Hcons.Weak}. *) -module PosInt : Sigs.Set with type elt = int +module PosInt : S with type elt = int (** Implementation of hashconsed sets of positive integers *)