Remove the timestamp header in source files. This information is
[tatoo.git] / src / finiteCofinite.mli
1 (***********************************************************************)
2 (*                                                                     *)
3 (*                               TAToo                                 *)
4 (*                                                                     *)
5 (*                     Kim Nguyen, LRI UMR8623                         *)
6 (*                   Université Paris-Sud & CNRS                       *)
7 (*                                                                     *)
8 (*  Copyright 2010-2012 Université Paris-Sud and Centre National de la *)
9 (*  Recherche Scientifique. All rights reserved.  This file is         *)
10 (*  distributed under the terms of the GNU Lesser General Public       *)
11 (*  License, with the special exception on linking described in file   *)
12 (*  ../LICENSE.                                                        *)
13 (*                                                                     *)
14 (***********************************************************************)
15
16 (** Implementation of hashconsed finite or cofinite sets.
17 *)
18
19 include module type of FiniteCofinite_sig
20
21 (** Output signature of the {!FiniteCofinite.Make} and
22     {!FiniteCofinite.Weak} functors.*)
23
24 module Make (E : Ptset.S) : S with type elt = E.elt and type set = E.t
25 (** Builds an implementation of hashconsed sets of hashconsed elements.
26     See {!Hcons.Make}.
27 *)
28
29 module Weak (E : Ptset.S) : S with type elt = E.elt and type set = E.t
30 (** Builds an implementation of hashconsed sets of hashconsed elements
31     with weak internal storage. See {!Hcons.Weak}.
32 *)