]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_transformations/tacticAst2Box.ml
fix
[helm.git] / helm / ocaml / cic_transformations / tacticAst2Box.ml
1 (* Copyright (C) 2004, HELM Team.
2  * 
3  * This file is part of HELM, an Hypertextual, Electronic
4  * Library of Mathematics, developed at the Computer Science
5  * Department, University of Bologna, Italy.
6  * 
7  * HELM is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  * 
12  * HELM is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with HELM; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20  * MA  02111-1307, USA.
21  * 
22  * For details, see the HELM World-Wide-Web page,
23  * http://helm.cs.unibo.it/
24  *)
25
26 (**************************************************************************)
27 (*                                                                        *)
28 (*                           PROJECT HELM                                 *)
29 (*                                                                        *)
30 (*                Andrea Asperti <asperti@cs.unibo.it>                    *)
31 (*                             18/2/2004                                  *)
32 (*                                                                        *)
33 (**************************************************************************)
34
35
36 open Ast2pres
37 open TacticAst
38
39 let rec count_tactic current_size tac =
40   if current_size > maxsize then current_size 
41   else match tac with 
42     | Absurd (_, term) -> countterm (current_size + 6) term
43     | Apply (_, term) -> countterm (current_size + 6) term
44     | Auto _ -> current_size + 4
45     | Assumption _ -> current_size + 10
46     | Change (_, t1, t2, where) ->
47         let size1 = countterm (current_size + 12) t1 in (* change, with *)
48         let size2 = countterm size1 t2 in
49         (match where with 
50              None -> size2
51            | Some ident -> size2 + 3 + String.length ident)
52     | Change_pattern _ -> assert false  (* TODO *)
53     | Contradiction _ -> current_size + 13
54     | Cut (_, term) -> countterm (current_size + 4) term
55     | Decompose (_, ident, principles) ->
56         List.fold_left
57           (fun size s -> size + (String.length s))
58           (current_size + 11 + String.length ident) principles
59     | Discriminate (_, ident) -> current_size + 12 + (String.length ident)
60     | Elim (_, term, using) ->
61         let size1 = countterm (current_size + 5) term in
62           (match using with 
63            None -> size1
64              | Some term -> countterm (size1 + 7) term)
65     | ElimType (_, term) -> countterm (current_size + 10) term
66     | Exact (_, term) -> countterm (current_size + 6) term
67     | Exists _ -> current_size + 6
68     | Fold (_, kind, term) ->
69         countterm (current_size + 5) term
70     | Fourier _ -> current_size + 7
71     | Goal (_, n) -> current_size + 4 + int_of_float (ceil (log10 (float n)))
72     | Injection (_, ident) -> current_size + 10 + (String.length ident)
73     | Intros (_, num, idents) ->
74         List.fold_left 
75           (fun size s -> size + (String.length s))
76           (current_size + 7) idents
77     | Left _ -> current_size + 4
78     | LetIn (_, term, ident) ->
79         countterm (current_size + 5 + String.length ident) term
80     | Reduce _
81     | ReduceAt _ -> assert false  (* TODO *)
82     | Reflexivity _ -> current_size + 11
83     | Replace (_, t1, t2) -> 
84         let size1 = countterm (current_size + 14) t1 in (* replace, with *)
85           countterm size1 t2    
86     | Replace_pattern _ -> assert false  (* TODO *)
87     | Rewrite _ -> assert false (* TODO *)
88     | Right _ -> current_size + 5
89     | Ring _ -> current_size + 4
90     | Split _ -> current_size + 5
91     | Symmetry _ -> current_size + 8
92     | Transitivity (_, term) -> 
93         countterm (current_size + 13) term
94 ;;
95
96 let is_big_tac tac =
97   let n = (count_tactic 0 tac) in
98 (*   prerr_endline ("Lunghezza: " ^ (string_of_int n)); *)
99   n > maxsize
100 ;;
101
102 (* prova *)
103 let rec small_tactic2box tac =
104   Box.Text([], TacticAstPp.pp_tactic tac)
105
106 let string_of_kind = function
107   | `Reduce -> "reduce"
108   | `Simpl -> "simplify"
109   | `Whd -> "whd"
110   | `Normalize -> "normalize"
111
112 let dummy_tbl = Hashtbl.create 0
113
114 let ast2astBox ast = Ast2pres.ast2astBox (ast, dummy_tbl)
115
116 let pretty_append l ast =
117   if is_big ast then
118     [Box.H([],l);
119      Box.H([],[Box.skip; ast2astBox ast])]
120   else
121     [Box.H([],l@[Box.smallskip; ast2astBox ast])]
122
123 let rec tactic2box tac =
124   if (is_big_tac tac) then
125     big_tactic2box tac
126   else 
127     small_tactic2box tac
128
129 and big_tactic2box = function
130   | Absurd (_, term) ->
131       Box.V([],[Box.Text([],"absurd");
132                 ast2astBox term])
133   | Apply (_, term) -> 
134       Box.V([],[Box.Text([],"apply");
135                 ast2astBox term])
136   | Assumption _ -> Box.Text([],"assumption")
137   | Auto _ -> Box.Text([],"auto")
138   | Change (_, t1, t2, where) ->
139       let where =
140         (match where with 
141              None -> []
142            | Some ident -> 
143                [Box.Text([],"in");
144                 Box.smallskip;
145                 Box.Text([],ident)]) in
146         Box.V([],
147               (pretty_append 
148                  [Box.Text([],"change")]
149                  t1)@
150               (pretty_append 
151                  [Box.Text([],"with")]
152                  t2)@where)
153   | Change_pattern _ -> assert false  (* TODO *)
154   | Contradiction _ -> Box.Text([],"contradiction")
155   | Cut (_, term) -> 
156       Box.V([],[Box.Text([],"cut");
157                 Box.indent(ast2astBox term)])
158   | Decompose (_, ident, principles) ->
159       let principles =
160         List.map (fun x -> Box.Text([],x)) principles in
161       Box.V([],[Box.Text([],"decompose");
162                 Box.H([],[Box.Text([],"[");
163                           Box.V([],principles);
164                           Box.Text([],"]")]);
165                 Box.Text([],ident)])
166   | Discriminate (_, ident) -> 
167       Box.V([],[Box.Text([],"discriminate");
168                 Box.Text([],ident)])
169   | Elim (_, term, using) ->
170       let using =
171         (match using with 
172              None -> []
173            | Some term -> 
174                (pretty_append
175                   [Box.Text([],"using")]
176                   term)) in
177       Box.V([],
178             (pretty_append
179                [Box.Text([],"elim")]
180                term)@using)
181   | ElimType (_, term) -> 
182       Box.V([],[Box.Text([],"elim type");
183                 Box.indent(ast2astBox term)])
184   | Exact (_, term) -> 
185       Box.V([],[Box.Text([],"exact");
186                 Box.indent(ast2astBox term)])
187   | Exists _ -> Box.Text([],"exists")
188   | Fold (_, kind, term) ->
189       Box.V([],[Box.H([],[Box.Text([],"fold");
190                           Box.smallskip;
191                           Box.Text([],string_of_kind kind)]);
192                 Box.indent(ast2astBox term)])
193   | Fourier _ -> Box.Text([],"fourier")
194   | Goal (_, n) -> Box.Text([],"goal " ^ string_of_int n)
195   | Injection (_, ident) -> 
196       Box.V([],[Box.Text([],"transitivity");
197                 Box.indent (Box.Text([],ident))])
198   | Intros (_, num, idents) ->
199       let num =
200         (match num with 
201              None -> [] 
202            | Some num -> [Box.Text([],string_of_int num)]) in
203       let idents =
204         List.map (fun x -> Box.Text([],x)) idents in
205       Box.V([],[Box.Text([],"decompose");
206                 Box.H([],[Box.smallskip;
207                           Box.V([],idents)])])
208   | Left _ -> Box.Text([],"left")
209   | LetIn (_, term, ident) ->
210       Box.V([],[Box.H([],[Box.Text([],"let");
211                           Box.smallskip;
212                           Box.Text([],ident);
213                           Box.smallskip;
214                           Box.Text([],"=")]);
215                 Box.indent (ast2astBox term)])
216   | Reduce _
217   | ReduceAt _ -> assert false  (* TODO *)
218   | Reflexivity _ -> Box.Text([],"reflexivity")
219   | Replace (_, t1, t2) -> 
220       Box.V([],
221             (pretty_append 
222                [Box.Text([],"replace")]
223                t1)@
224             (pretty_append 
225                [Box.Text([],"with")]
226                t2))
227   | Replace_pattern _ -> assert false  (* TODO *)
228   | Rewrite _ -> assert false (* TODO *)
229   | Right _ -> Box.Text([],"right")
230   | Ring _ ->  Box.Text([],"ring")
231   | Split _ -> Box.Text([],"split")
232   | Symmetry _ -> Box.Text([],"symmetry")
233   | Transitivity (_, term) -> 
234       Box.V([],[Box.Text([],"transitivity");
235                 Box.indent (ast2astBox term)])
236 ;;
237
238 open TacticAst
239
240 let rec tactical2box = function
241   | Tactic (_, tac) -> tactic2box tac
242 (*
243   | Command cmd -> (* TODO dummy implementation *)
244       Box.Text([], TacticAstPp.pp_tactical (Command cmd))
245 *)
246
247   | Fail _ -> Box.Text([],"fail")
248   | Do (_, count, tac) -> 
249       Box.V([],[Box.Text([],"do " ^ string_of_int count);
250                 Box.indent (tactical2box tac)])
251   | IdTac _ -> Box.Text([],"id")
252   | Repeat (_, tac) -> 
253       Box.V([],[Box.Text([],"repeat");
254                 Box.indent (tactical2box tac)])
255   | Seq (_, tacs) -> 
256       Box.V([],tacticals2box tacs)
257   | Then (_, tac, tacs) -> 
258       Box.V([],[tactical2box tac;
259                 Box.H([],[Box.skip;
260                           Box.Text([],"[");
261                           Box.V([],tacticals2box tacs);
262                           Box.Text([],"]");])])
263   | Tries (_, tacs) -> 
264       Box.V([],[Box.Text([],"try");
265                 Box.H([],[Box.skip;
266                           Box.Text([],"[");
267                           Box.V([],tacticals2box tacs);
268                           Box.Text([],"]");])])
269   | Try (_, tac) -> 
270       Box.V([],[Box.Text([],"try");
271                 Box.indent (tactical2box tac)])
272
273 and tacticals2box tacs =
274   List.map 
275     (function tac -> Box.H([],[tactical2box tac; Box.Text([],";")])) tacs
276 ;;
277
278 let tacticalPp tac =
279   String.concat "\n" 
280     (BoxPp.to_string CicAstPp.pp_term (tactical2box tac));;
281
282