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