]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_transformations/tacticAstPp.ml
added Baseuri command
[helm.git] / helm / ocaml / cic_transformations / tacticAstPp.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 open Printf
27
28 open TacticAst
29
30 let pp_term term = CicAstPp.pp_term term
31
32 let pp_idents idents = "[" ^ String.concat "; " idents ^ "]"
33
34 let pp_reduction_kind = function
35   | `Reduce -> "reduce"
36   | `Simpl -> "simpl"
37   | `Whd -> "whd"
38
39 let rec pp_tactic = function
40   | LocatedTactic (loc, tac) -> pp_tactic tac
41   | Absurd term -> "absurd" ^ pp_term term
42   | Apply term -> "apply " ^ pp_term term
43   | Auto -> "auto"
44   | Assumption -> "assumption"
45   | Change (t1, t2, where) ->
46       sprintf "change %s with %s%s" (pp_term t1) (pp_term t2)
47         (match where with None -> "" | Some ident -> "in " ^ ident)
48   | Change_pattern (_, _, _) -> assert false  (* TODO *)
49   | Contradiction -> "contradiction"
50   | Cut term -> "cut " ^ pp_term term
51   | Decompose (ident, principles) ->
52       sprintf "decompose %s %s" (pp_idents principles) ident
53   | Discriminate ident -> "discriminate " ^ ident
54   | Elim (term, using) ->
55       sprintf "elim " ^ pp_term term ^
56       (match using with None -> "" | Some term -> " using " ^ pp_term term)
57   | ElimType term -> "elim type " ^ pp_term term
58   | Exact term -> "exact " ^ pp_term term
59   | Exists -> "exists"
60   | Fold (kind, term) ->
61       sprintf "fold %s %s" (pp_reduction_kind kind) (pp_term term)
62   | Fourier -> "fourier"
63   | Hint -> "hint"
64   | Injection ident -> "injection " ^ ident
65   | Intros (num, idents) ->
66       sprintf "intros%s%s"
67         (match num with None -> "" | Some num -> " " ^ string_of_int num)
68         (match idents with [] -> "" | idents -> " " ^ pp_idents idents)
69   | Left -> "left"
70   | LetIn (term, ident) -> sprintf "let %s in %s" (pp_term term) ident
71   | Reduce (_, _, _) -> assert false  (* TODO *)
72   | Reflexivity -> "reflexivity"
73   | Replace (t1, t2) -> sprintf "replace %s with %s" (pp_term t1) (pp_term t2)
74   | Replace_pattern (_, _) -> assert false  (* TODO *)
75   | Rewrite (_, _, _) -> assert false (* TODO *)
76   | Right -> "right"
77   | Ring -> "ring"
78   | Split -> "split"
79   | Symmetry -> "symmetry"
80   | Transitivity term -> "transitivity " ^ pp_term term
81
82 let pp_flavour = function
83   | `Definition -> "Definition"
84   | `Fact -> "Fact"
85   | `Goal -> "Goal"
86   | `Lemma -> "Lemma"
87   | `Remark -> "Remark"
88   | `Theorem -> "Theorem"
89
90 let pp_command = function
91   | Abort -> "Abort"
92   | Baseuri (Some uri) -> sprintf "Baseuri \"%s\"" uri
93   | Baseuri None -> "Baseuri"
94   | Check term -> sprintf "Check %s" (CicAstPp.pp_term term)
95   | Proof -> "Proof"
96   | Qed name ->
97       (match name with None -> "Qed" | Some name -> sprintf "Save %s" name)
98   | Quit -> "Quit"
99   | Redo None -> "Redo"
100   | Redo (Some n) -> sprintf "Redo %d" n
101   | Theorem (flavour, name, typ, body) ->
102       sprintf "%s %s: %s %s"
103         (pp_flavour flavour)
104         (match name with None -> "" | Some name -> name)
105         (CicAstPp.pp_term typ)
106         (match body with
107         | None -> ""
108         | Some body -> "\\def " ^ CicAstPp.pp_term body)
109   | Undo None -> "Undo"
110   | Undo (Some n) -> sprintf "Undo %d" n
111
112 let rec pp_tactical = function
113   | LocatedTactical (loc, tac) -> pp_tactical tac
114
115   | Tactic tac -> pp_tactic tac
116   | Command cmd -> pp_command cmd
117
118   | Fail -> "fail"
119   | Do (count, tac) -> sprintf "do %d %s" count (pp_tactical tac)
120   | IdTac -> "id"
121   | Repeat tac -> "repeat " ^ pp_tactical tac
122   | Seq tacs -> pp_tacticals tacs
123   | Then (tac, tacs) -> sprintf "%s [%s]" (pp_tactical tac) (pp_tacticals tacs)
124   | Tries tacs -> sprintf "tries [%s]" (pp_tacticals tacs)
125   | Try tac -> "try " ^ pp_tactical tac
126
127 and pp_tacticals tacs = String.concat "; " (List.map pp_tactical tacs)
128
129 let pp_tactical tac = pp_tactical tac ^ "."
130