summaryrefslogtreecommitdiff
path: root/abstract/formula_printer.ml
diff options
context:
space:
mode:
Diffstat (limited to 'abstract/formula_printer.ml')
-rw-r--r--abstract/formula_printer.ml9
1 files changed, 6 insertions, 3 deletions
diff --git a/abstract/formula_printer.ml b/abstract/formula_printer.ml
index 994c82a..25b7b22 100644
--- a/abstract/formula_printer.ml
+++ b/abstract/formula_printer.ml
@@ -91,15 +91,18 @@ let print_expr fmt e =
(* Print constraint list form of formula *)
-let print_cons fmt (eq, sg) =
+let print_cons_sg fmt sg =
let sg_str = match sg with
| CONS_EQ -> "="
| CONS_NE -> "≠"
| CONS_GT -> ">"
| CONS_GE -> "≥"
in
- Format.fprintf fmt "@[<hv 2>%a %s 0@]"
- print_num_expr eq sg_str
+ Format.fprintf fmt "%s" sg_str
+
+let print_cons fmt (eq, sg) =
+ Format.fprintf fmt "@[<hv 2>%a %a 0@]"
+ print_num_expr eq print_cons_sg sg
let rec print_conslist fmt (cons, e) =
let rec aux = function