Flatten the sources, only leave the XPath module packed.
[tatoo.git] / src / finiteCofinite_sig.ml
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 (*
17   Time-stamp: <Last modified on 2013-03-04 22:44:15 CET by Kim Nguyen>
18 *)
19
20 exception InfiniteSet
21 module type S =
22 sig
23   include Hcons.S
24   include Common_sig.Set with type t := t
25   type set
26   val any : t
27   val is_any : t -> bool
28   val is_finite : t -> bool
29   val kind : t -> [ `Finite | `Cofinite ]
30   val complement : t -> t
31   val kind_split : t list -> t * t
32   val positive : t -> set
33   val negative : t -> set
34   val inj_positive : set -> t
35   val inj_negative : set -> t
36 end