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