2 ||M|| This file is part of HELM, an Hypertextual, Electronic
3 ||A|| Library of Mathematics, developed at the Computer Science
4 ||T|| Department, University of Bologna, Italy.
6 ||T|| HELM is free software; you can redistribute it and/or
7 ||A|| modify it under the terms of the GNU General Public License
8 \ / version 2 or (at your option) any later version.
9 \ / This software is distributed as is, NO WARRANTY.
10 V_______________________________________________________________ *)
12 (* $Id: nCic.ml 9058 2008-10-13 17:42:30Z tassi $ *)
14 module Pp (B : Terms.Blob) = struct
16 (* Main pretty printing functions *)
18 let pp_foterm ~formatter:f t =
19 let rec aux ?(toplevel=false) = function
21 Format.fprintf f "%s" (B.pp x)
23 Format.fprintf f "?%d" i
24 | Terms.Node (hd::tl) ->
25 Format.fprintf f "@[<hov 2>";
26 if not toplevel then Format.fprintf f "(";
28 List.iter (fun x -> Format.fprintf f "@;";
30 if not toplevel then Format.fprintf f ")";
38 let string_of_rule = function
39 | Terms.Superposition -> "Super"
40 | Terms.Demodulation -> "Demod"
43 let string_of_direction = function
44 | Terms.Left2Right -> "Left to right"
45 | Terms.Right2Left -> "Right to left"
46 | Terms.Nodir -> "No direction"
49 let pp_substitution ~formatter:f subst =
50 Format.fprintf f "@[<v 2>";
53 (Format.fprintf f "?%d -> " i;
55 Format.fprintf f "@;"))
57 Format.fprintf f "@]";
60 let pp_proof bag ~formatter:f p =
61 let rec aux eq = function
63 Format.fprintf f "%d: Exact (" eq;
65 Format.fprintf f ")@;";
66 | Terms.Step (rule,eq1,eq2,dir,pos,subst) ->
67 Format.fprintf f "%d: %s("
68 eq (string_of_rule rule);
69 Format.fprintf f "|%d with %d dir %s))" eq1 eq2
70 (string_of_direction dir);
71 let (_, _, _, proof1),_,_ = Terms.get_from_bag eq1 bag in
72 let (_, _, _, proof2),_,_ = Terms.get_from_bag eq2 bag in
73 Format.fprintf f "@[<v 2>";
76 Format.fprintf f "@]";
78 Format.fprintf f "@[<v>";
83 let string_of_comparison = function
87 | Terms.Incomparable -> "=?="
88 | Terms.Invertible -> "=<->="
90 let pp_unit_clause ~formatter:f c =
91 let (id, l, vars, proof) = c in
92 Format.fprintf f "Id : %3d, " id ;
94 | Terms.Predicate t ->
95 Format.fprintf f "@[<hv>{";
97 Format.fprintf f "@;[%s] by "
98 (String.concat ", " (List.map string_of_int vars));
100 | Terms.Exact t -> pp_foterm f t
101 | Terms.Step (rule, id1, id2, _, p, _) ->
102 Format.fprintf f "%s %d with %d at %s"
103 (string_of_rule rule) id1 id2 (String.concat
104 "," (List.map string_of_int p)));
105 Format.fprintf f "@]"
106 | Terms.Equation (lhs, rhs, ty, comp) ->
107 Format.fprintf f "@[<hv>{";
109 Format.fprintf f "}:@;@[<hv>";
111 Format.fprintf f "@;%s@;" (string_of_comparison comp);
113 Format.fprintf f "@]@;[%s] by "
114 (String.concat ", " (List.map string_of_int vars));
116 | Terms.Exact t -> pp_foterm f t
117 | Terms.Step (rule, id1, id2, _, p, _) ->
118 Format.fprintf f "%s %d with %d at %s"
119 (string_of_rule rule) id1 id2 (String.concat
120 "," (List.map string_of_int p)));
121 Format.fprintf f "@]"
124 let pp_bag ~formatter:f (_,bag) =
125 Format.fprintf f "@[<v>";
127 (fun _ (c,d,_) -> pp_unit_clause ~formatter:f c;
128 if d then Format.fprintf f " (discarded)@;"
129 else Format.fprintf f "@;") bag;
130 Format.fprintf f "@]"
133 (* String buffer implementation *)
134 let on_buffer ?(margin=80) f t =
135 let buff = Buffer.create 100 in
136 let formatter = Format.formatter_of_buffer buff in
137 Format.pp_set_margin formatter margin;
138 f ~formatter:formatter t;
139 Format.fprintf formatter "@?";
151 let pp_substitution =
152 on_buffer pp_substitution
156 on_buffer (pp_proof bag)
159 let pp_unit_clause ?margin x=
160 on_buffer ?margin pp_unit_clause x