X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Fptset.mli;h=dc80b4aded7253e24baec010c7c19627454de87c;hb=73755ec720254766e4504ac72684be5e357b6939;hp=df3825526103a4eb030ff088b0d4fc7897487ca7;hpb=cba2938d929fd5119b1491686ddc224d5af618c6;p=tatoo.git diff --git a/src/ptset.mli b/src/ptset.mli index df38255..dc80b4a 100644 --- a/src/ptset.mli +++ b/src/ptset.mli @@ -13,12 +13,11 @@ (* *) (***********************************************************************) -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. *) +(* + Time-stamp: +*) + +include module type of Sigs.PTSET module Make (H : Hcons.Abstract) : S with type elt = H.t (** Builds an implementation of hashconsed sets of hashconsed elements. @@ -30,5 +29,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 *)