]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/grafite/grafiteAst.ml
New tactic: inversion.
[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   | Inversion of loc * 'term
74   | LApply of loc * int option * 'term list * 'term * 'ident option
75   | Left of loc
76   | LetIn of loc * 'term * 'ident
77   | Reduce of loc * 'reduction * ('term, 'lazy_term, 'ident) pattern 
78   | Reflexivity of loc
79   | Replace of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term
80   | Rewrite of loc * direction * 'term *
81       ('term, 'lazy_term, 'ident) pattern
82   | Right of loc
83   | Ring of loc
84   | Split of loc
85   | Symmetry of loc
86   | Transitivity of loc * 'term
87
88 type search_kind = [ `Locate | `Hint | `Match | `Elim ]
89
90 type print_kind = [ `Env | `Coer ]
91
92 type 'term macro = 
93   (* Whelp's stuff *)
94   | WHint of loc * 'term 
95   | WMatch of loc * 'term 
96   | WInstance of loc * 'term 
97   | WLocate of loc * string
98   | WElim of loc * 'term
99   (* real macros *)
100 (*   | Abort of loc *)
101   | Print of loc * string
102   | Check of loc * 'term 
103   | Hint of loc
104   | Quit of loc
105 (*   | Redo of loc * int option
106   | Undo of loc * int option *)
107 (*   | Print of loc * print_kind *)
108   | Search_pat of loc * search_kind * string  (* searches with string pattern *)
109   | Search_term of loc * search_kind * 'term  (* searches with term pattern *)
110
111 type alias_spec =
112   | Ident_alias of string * string        (* identifier, uri *)
113   | Symbol_alias of string * int * string (* name, instance no, description *)
114   | Number_alias of int * string          (* instance no, description *)
115
116 (** To be increased each time the command type below changes, used for "safe"
117  * marshalling *)
118 let magic = 5
119
120 type 'obj command =
121   | Default of loc * string * UriManager.uri list
122   | Include of loc * string
123   | Set of loc * string * string
124   | Drop of loc
125   | Qed of loc
126       (** name.
127        * Name is needed when theorem was started without providing a name
128        *)
129   | Coercion of loc * UriManager.uri * bool (* add composites *)
130   | Alias of loc * alias_spec
131       (** parameters, name, type, fields *) 
132   | Obj of loc * 'obj
133   | Notation of loc * direction option * CicNotationPt.term * Gramext.g_assoc *
134       int * CicNotationPt.term
135       (* direction, l1 pattern, associativity, precedence, l2 pattern *)
136   | Interpretation of loc *
137       string * (string * CicNotationPt.argument_pattern list) *
138         CicNotationPt.cic_appl_pattern
139       (* description (i.e. id), symbol, arg pattern, appl pattern *)
140
141     (* DEBUGGING *)
142   | Dump of loc (* dump grammar on stdout *)
143     (* DEBUGGING *)
144   | Render of loc * UriManager.uri (* render library object *)
145
146 (* composed magic: term + command magics. No need to change this value *)
147 let magic = magic + 10000 * CicNotationPt.magic
148
149 type ('term, 'lazy_term, 'reduction, 'ident) tactical =
150   | Tactic of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic
151   | Do of loc * int * ('term, 'lazy_term, 'reduction, 'ident) tactical
152   | Repeat of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
153   | Seq of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
154       (* sequential composition *)
155   | Then of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical *
156       ('term, 'lazy_term, 'reduction, 'ident) tactical list
157   | First of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
158       (* try a sequence of loc * tactical until one succeeds, fail otherwise *)
159   | Try of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
160       (* try a tactical and mask failures *)
161   | Solve of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical list
162
163   | Dot of loc
164   | Semicolon of loc
165   | Branch of loc
166   | Shift of loc
167   | Pos of loc * int
168   | Merge of loc
169   | Focus of loc * int list
170   | Unfocus of loc
171   | Skip of loc
172
173 let is_punctuation =
174   function
175   | Dot _ | Semicolon _ | Branch _ | Shift _ | Merge _ | Pos _ -> true
176   | _ -> false
177
178 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) code =
179   | Command of loc * 'obj command
180   | Macro of loc * 'term macro 
181   | Tactical of loc * ('term, 'lazy_term, 'reduction, 'ident) tactical
182       * ('term, 'lazy_term, 'reduction, 'ident) tactical option(* punctuation *)
183              
184 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment =
185   | Note of loc * string
186   | Code of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
187              
188 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) statement =
189   | Executable of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
190   | Comment of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment
191
192   (* statements meaningful for matitadep *)
193 type dependency =
194   | IncludeDep of string
195   | BaseuriDep of string
196   | UriDep of UriManager.uri
197