Only print ∑ instead of ∑-{} when the set is universal.
[tatoo.git] / src / utils / qNameSet.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 17:42:09 CET by Kim Nguyen>
18 *)
19
20 include FiniteCofinite.Make(Ptset.Make(QName))
21
22 let print_finite fmt e conv =
23   Format.fprintf fmt "{";
24   Pretty.print_list ~sep:"," QName.print fmt (conv e);
25   Format.fprintf fmt "}"
26
27 let printer fmt e test conv inv is_any =
28   if test e then print_finite fmt e conv
29   else
30     let () = Format.fprintf fmt "%s" Pretty.big_sigma in
31     if not (is_any e) then begin Format.fprintf fmt "-";print_finite fmt (inv e) conv end
32
33 let print fmt e = printer fmt e is_finite elements complement is_any
34
35 module Weak =
36 struct
37   include FiniteCofinite.Weak(Ptset.Weak(QName))
38   let print fmt e =  printer fmt e is_finite elements complement is_any
39 end