]> matita.cs.unibo.it Git - helm.git/blob - helm/software/components/grafite/grafiteAst.ml
1) mk_meta now returns also the index of the created meta
[helm.git] / helm / software / components / 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 (* $Id$ *)
27
28 type direction = [ `LeftToRight | `RightToLeft ]
29
30 type loc = Stdpp.location
31
32 type ('term, 'lazy_term, 'ident) pattern =
33   'lazy_term option * ('ident * 'term) list * 'term option
34
35 type npattern = 
36  CicNotationPt.term option * (string * CicNotationPt.term) list * CicNotationPt.term option
37
38 type 'lazy_term reduction =
39   [ `Normalize
40   | `Simpl
41   | `Unfold of 'lazy_term option
42   | `Whd ]
43
44 type 'ident intros_spec = int option * 'ident option list
45
46 type 'term auto_params = 'term list * (string*string) list
47
48 type 'term just =
49  [ `Term of 'term
50  | `Auto of 'term auto_params ]
51
52 type ntactic =
53    | NApply of loc * CicNotationPt.term
54    | NChange of loc * npattern * CicNotationPt.term
55    | NId of loc
56
57 type ('term, 'lazy_term, 'reduction, 'ident) tactic =
58   (* Higher order tactics (i.e. tacticals) *)
59   | Do of loc * int * ('term, 'lazy_term, 'reduction, 'ident) tactic
60   | Repeat of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic
61   | Seq of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic list
62       (* sequential composition *)
63   | Then of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic *
64       ('term, 'lazy_term, 'reduction, 'ident) tactic list
65   | First of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic list
66       (* try a sequence of loc * tactic until one succeeds, fail otherwise *)
67   | Try of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic
68       (* try a tactic and mask failures *)
69   | Solve of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic list
70   | Progress of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic
71   (* Real tactics *)
72   | Absurd of loc * 'term
73   | Apply of loc * 'term
74   | ApplyRule of loc * 'term
75   | ApplyP of loc * 'term (* apply for procedural reconstruction *)
76   | ApplyS of loc * 'term * 'term auto_params
77   | Assumption of loc
78   | AutoBatch of loc * 'term auto_params
79   | Cases of loc * 'term * ('term, 'lazy_term, 'ident) pattern *
80              'ident intros_spec
81   | Change of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term
82   | Clear of loc * 'ident list
83   | ClearBody of loc * 'ident
84   | Compose of loc * 'term * 'term option * int * 'ident intros_spec
85   | Constructor of loc * int
86   | Contradiction of loc
87   | Cut of loc * 'ident option * 'term
88   | Decompose of loc * 'ident option list
89   | Demodulate of loc * 'term auto_params
90   | Destruct of loc * 'term list option
91   | Elim of loc * 'term * 'term option * ('term, 'lazy_term, 'ident) pattern *
92             'ident intros_spec
93   | ElimType of loc * 'term * 'term option * 'ident intros_spec
94   | Exact of loc * 'term
95   | Exists of loc
96   | Fail of loc
97   | Fold of loc * 'reduction * 'lazy_term * ('term, 'lazy_term, 'ident) pattern
98   | Fourier of loc
99   | FwdSimpl of loc * string * 'ident option list
100   | Generalize of loc * ('term, 'lazy_term, 'ident) pattern * 'ident option
101   | IdTac of loc
102   | Intros of loc * 'ident intros_spec
103   | Inversion of loc * 'term
104   | LApply of loc * bool * int option * 'term list * 'term * 'ident option
105   | Left of loc
106   | LetIn of loc * 'term * 'ident
107   | Reduce of loc * 'reduction * ('term, 'lazy_term, 'ident) pattern 
108   | Reflexivity of loc
109   | Replace of loc * ('term, 'lazy_term, 'ident) pattern * 'lazy_term
110   | Rewrite of loc * direction * 'term *
111       ('term, 'lazy_term, 'ident) pattern * 'ident option list
112   | Right of loc
113   | Ring of loc
114   | Split of loc
115   | Symmetry of loc
116   | Transitivity of loc * 'term
117   (* Declarative language *)
118   | Assume of loc * 'ident * 'term
119   | Suppose of loc * 'term *'ident * 'term option
120   | By_just_we_proved of loc * 'term just *
121      'term * 'ident option * 'term option
122   | We_need_to_prove of loc * 'term * 'ident option * 'term option
123   | Bydone of loc * 'term just
124   | We_proceed_by_induction_on of loc * 'term * 'term
125   | We_proceed_by_cases_on of loc * 'term * 'term
126   | Byinduction of loc * 'term * 'ident
127   | Thesisbecomes of loc * 'term
128   | Case of loc * string * (string * 'term) list 
129   | ExistsElim of loc * 'term just * 'ident * 'term * 'ident * 'lazy_term
130   | AndElim of loc * 'term just * 'ident * 'term * 'ident * 'term
131   | RewritingStep of
132      loc * (string option * 'term) option * 'term  *
133       [ `Term of 'term | `Auto of 'term auto_params
134       | `Proof | `SolveWith of 'term ] *
135       bool (* last step*)
136   
137 type search_kind = [ `Locate | `Hint | `Match | `Elim ]
138
139 type print_kind = [ `Env | `Coer ]
140
141 type presentation_style = Declarative
142                         | Procedural of int option
143
144 type ('term,'lazy_term) macro = 
145   (* Whelp's stuff *)
146   | WHint of loc * 'term
147   | WMatch of loc * 'term 
148   | WInstance of loc * 'term 
149   | WLocate of loc * string
150   | WElim of loc * 'term
151   (* real macros *)
152   | Eval of loc * 'lazy_term reduction * 'term
153   | Check of loc * 'term 
154   | Hint of loc * bool
155   | AutoInteractive of loc * 'term auto_params
156   | Inline of loc * presentation_style * string * string * Cic.object_flavour option
157      (* URI or base-uri, name prefix, flavour *) 
158
159 (** To be increased each time the command type below changes, used for "safe"
160  * marshalling *)
161 let magic = 17
162
163 type ('term,'obj) command =
164   | Index of loc * 'term option (* key *) * UriManager.uri (* value *)
165   | Coercion of loc * 'term * bool (* add_obj *) *
166      int (* arity *) * int (* saturations *)
167   | PreferCoercion of loc * 'term
168   | UnificationHint of loc * 'term * int (* term, precedence *)
169   | Default of loc * string * UriManager.uri list
170   | Drop of loc
171   | Include of loc * string
172   | Obj of loc * 'obj
173   | Relation of
174      loc * string * 'term * 'term * 'term option * 'term option * 'term option
175   | Set of loc * string * string
176   | Print of loc * string
177   | Qed of loc
178   | NObj of loc * CicNotationPt.term CicNotationPt.obj
179
180 type punctuation_tactical =
181   | Dot of loc
182   | Semicolon of loc
183   | Branch of loc
184   | Shift of loc
185   | Pos of loc * int list
186   | Wildcard of loc
187   | Merge of loc
188
189 type non_punctuation_tactical =
190   | Focus of loc * int list
191   | Unfocus of loc
192   | Skip of loc
193
194 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) code =
195   | Command of loc * ('term, 'obj) command
196   | Macro of loc * ('term,'lazy_term) macro 
197   | NTactic of loc * ntactic * punctuation_tactical
198   | Tactic of loc * ('term, 'lazy_term, 'reduction, 'ident) tactic option
199       * punctuation_tactical
200   | NonPunctuationTactical of loc * non_punctuation_tactical
201       * punctuation_tactical
202              
203 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment =
204   | Note of loc * string
205   | Code of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
206              
207 type ('term, 'lazy_term, 'reduction, 'obj, 'ident) statement =
208   | Executable of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) code
209   | Comment of loc * ('term, 'lazy_term, 'reduction, 'obj, 'ident) comment