]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/grafite/grafiteAst.ml
abstracted pretty printers over inner pretty printing units (terms, lazy terms, and...
[helm.git] / helm / ocaml / grafite / grafiteAst.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 type direction = [ `LeftToRight | `RightToLeft ]
27
28 type loc = CicNotationPt.location
29
30 type ('term, 'lazy_term, 'ident) pattern =
31   'lazy_term option * ('ident * 'term) list * 'term option
32
33 type ('term, 'ident) type_spec =
34    | Ident of 'ident
35    | Type of UriManager.uri * int 
36
37 type 'lazy_term reduction =
38   [ `Normalize
39   | `Reduce
40   | `Simpl
41   | `Unfold of 'lazy_term option
42   | `Whd ]
43
44 type ('term, 'lazy_term, 'reduction, 'ident) tactic =
45   | Absurd of loc * 'term
46   | Apply of loc * 'term
47   | Assumption of loc
48   | Auto of loc * int option * int option * string option * string option 
49       (* depth, width, paramodulation, full *) (* ALB *)
50   | Change of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term
51   | Clear of loc * 'ident
52   | ClearBody of loc * 'ident
53   | Compare of loc * 'term
54   | Constructor of loc * int
55   | Contradiction of loc
56   | Cut of loc * 'ident option * 'term
57   | DecideEquality of loc
58   | Decompose of loc * ('term, 'ident) type_spec list * 'ident * 'ident list
59   | Discriminate of loc * 'term
60   | Elim of loc * 'term * 'term option * int option * 'ident list
61   | ElimType of loc * 'term * 'term option * int option * 'ident list
62   | Exact of loc * 'term
63   | Exists of loc
64   | Fail of loc
65   | Fold of loc * 'reduction * 'lazy_term * ('term, 'lazy_term, 'ident) pattern
66   | Fourier of loc
67   | FwdSimpl of loc * string * 'ident list
68   | Generalize of loc * ('term, 'lazy_term, 'ident) pattern * 'ident option
69   | Goal of loc * int (* change current goal, argument is goal number 1-based *)
70   | IdTac of loc
71   | Injection of loc * 'term
72   | Intros of loc * int option * 'ident list
73   | LApply of loc * int option * 'term list * 'term * 'ident option
74   | Left of loc
75   | LetIn of loc * 'term * 'ident
76   | Reduce of loc * 'reduction * ('term, 'lazy_term, 'ident) pattern 
77   | Reflexivity of loc
78   | Replace of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term
79   | Rewrite of loc * direction * 'term *
80       ('term, 'lazy_term, 'ident) pattern
81   | Right of loc
82   | Ring of loc
83   | Split of loc
84   | Symmetry of loc
85   | Transitivity of loc * 'term
86
87 type search_kind = [ `Locate | `Hint | `Match | `Elim ]
88
89 type print_kind = [ `Env | `Coer ]
90
91 type 'term macro = 
92   (* Whelp's stuff *)
93   | WHint of loc * 'term 
94   | WMatch of loc * 'term 
95   | WInstance of loc * 'term 
96   | WLocate of loc * string
97   | WElim of loc * 'term
98   (* real macros *)
99 (*   | Abort of loc *)
100   | Print of loc * string
101   | Check of loc * 'term 
102   | Hint of loc
103   | Quit of loc
104 (*   | Redo of loc * int option
105   | Undo of loc * int option *)
106 (*   | Print of loc * print_kind *)
107   | Search_pat of loc * search_kind * string  (* searches with string pattern *)
108   | Search_term of loc * search_kind * 'term  (* searches with term pattern *)
109
110 type alias_spec =
111   | Ident_alias of string * string        (* identifier, uri *)
112   | Symbol_alias of string * int * string (* name, instance no, description *)
113   | Number_alias of int * string          (* instance no, description *)
114
115 (** To be increased each time the command type below changes, used for "safe"
116  * marshalling *)
117 let magic = 5
118
119 type 'obj command =
120   | Default of loc * string * UriManager.uri list
121   | Include of loc * string
122   | Set of loc * string * string
123   | Drop of loc
124   | Qed of loc
125       (** name.
126        * Name is needed when theorem was started without providing a name
127        *)
128   | Coercion of loc * UriManager.uri * bool (* add composites *)
129   | Alias of loc * alias_spec
130       (** parameters, name, type, fields *) 
131   | Obj of loc * 'obj
132   | Notation of loc * direction option * CicNotationPt.term * Gramext.g_assoc *
133       int * CicNotationPt.term
134       (* direction, l1 pattern, associativity, precedence, l2 pattern *)
135   | Interpretation of loc *
136       string * (string * CicNotationPt.argument_pattern list) *
137         CicNotationPt.cic_appl_pattern
138       (* description (i.e. id), symbol, arg pattern, appl pattern *)
139
140     (* DEBUGGING *)
141   | Dump of loc (* dump grammar on stdout *)
142     (* DEBUGGING *)
143   | Render of loc * UriManager.uri (* render library object *)
144
145 (* composed magic: term + command magics. No need to change this value *)
146 let magic = magic + 10000 * CicNotationPt.magic
147
148 type ('term, 'lazy_term, 'reduction, 'ident) tactical =
149   | Tactic of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic
150   | Do of loc * int * ('term, 'lazy_term, 'reduction, 'ident) tactical
151   | Repeat of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
152   | Seq of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
153       (* sequential composition *)
154   | Then of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical *
155       ('term, 'lazy_term, 'reduction, 'ident) tactical list
156   | First of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
157       (* try a sequence of loc * tactical until one succeeds, fail otherwise *)
158   | Try of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
159       (* try a tactical and mask failures *)
160   | Solve of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
161
162   | Dot of loc
163   | Semicolon of loc
164   | Branch of loc
165   | Shift of loc
166   | Pos of loc * int
167   | Merge of loc
168   | Focus of loc * int list
169   | Unfocus of loc
170   | Skip of loc
171
172 let is_punctuation =
173   function
174   | Dot _ | Semicolon _ | Branch _ | Shift _ | Merge _ | Pos _ -> true
175   | _ -> false
176
177 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) code =
178   | Command of loc * 'obj command
179   | Macro of loc * 'term macro 
180   | Tactical of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
181       * ('term, 'lazy_term, 'reduction, 'ident) tactical option(* punctuation *)
182              
183 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment =
184   | Note of loc * string
185   | Code of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
186              
187 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) statement =
188   | Executable of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
189   | Comment of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment
190
191   (* statements meaningful for matitadep *)
192 type dependency =
193   | IncludeDep of string
194   | BaseuriDep of string
195   | UriDep of UriManager.uri
196