Full implem of BU_over_Max and TP_max (to be tested) + my.xml from thesis + stuffs...
[tatoo.git] / src / stateSet.ml
index 47ad460..2a9e283 100644 (file)
@@ -18,5 +18,10 @@ open Format
 include Ptset.Make (Hcons.PosInt)
 
 let print ppf s =
-  fprintf ppf "{ %a }"
-    (Pretty.print_list ~sep:" " (State.print)) (elements s)
+  if is_empty s
+  then fprintf ppf "ΓΈ"
+  else
+    let p_set ppf s =
+      (Pretty.print_list ~sep:"," (State.print)) ppf (elements s) in
+    fprintf ppf "{%a}" p_set s
+