]> matita.cs.unibo.it Git - helm.git/blob - helm/ocaml/cic_notation/grafiteAst.ml
snapshot, notably:
[helm.git] / helm / ocaml / cic_notation / 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 type reduction_kind = [ `Reduce | `Simpl | `Whd | `Normalize ]
28
29 type loc = CicNotationPt.location
30
31 type ('term, 'ident) pattern = 'term option * ('ident * 'term) list * 'term
32
33 type ('term, 'ident) tactic =
34   | Absurd of loc * 'term
35   | Apply of loc * 'term
36   | Assumption of loc
37   | Auto of loc * int option * int option (* depth, width *)
38   | Change of loc * ('term,'ident) pattern * 'term
39   | Clear of loc * 'ident
40   | ClearBody of loc * 'ident
41   | Compare of loc * 'term
42   | Constructor of loc * int
43   | Contradiction of loc
44   | Cut of loc * 'ident option * 'term
45   | DecideEquality of loc
46   | Decompose of loc * 'term
47   | Discriminate of loc * 'term
48   | Elim of loc * 'term * 'term option * int option * 'ident list
49   | ElimType of loc * 'term * 'term option * int option * 'ident list
50   | Exact of loc * 'term
51   | Exists of loc
52   | Fail of loc
53   | Fold of loc * reduction_kind * 'term * ('term, 'ident) pattern
54   | Fourier of loc
55   | FwdSimpl of loc * string * 'ident list
56   | Generalize of loc * ('term, 'ident) pattern * 'ident option
57   | Goal of loc * int (* change current goal, argument is goal number 1-based *)
58   | IdTac of loc
59   | Injection of loc * 'term
60   | Intros of loc * int option * 'ident list
61   | LApply of loc * int option * 'term list * 'term * 'ident option
62   | Left of loc
63   | LetIn of loc * 'term * 'ident
64   | Reduce of loc * reduction_kind * ('term, 'ident) pattern 
65   | Reflexivity of loc
66   | Replace of loc * ('term, 'ident) pattern * 'term
67   | Rewrite of loc * direction * 'term * ('term, 'ident) pattern
68   | Right of loc
69   | Ring of loc
70   | Split of loc
71   | Symmetry of loc
72   | Transitivity of loc * 'term
73
74 type thm_flavour = Cic.object_flavour
75
76   (** <name, inductive/coinductive, type, constructor list>
77   * true means inductive, false coinductive *)
78 type 'term inductive_type = string * bool * 'term * (string * 'term) list
79
80 type search_kind = [ `Locate | `Hint | `Match | `Elim ]
81
82 type print_kind = [ `Env | `Coer ]
83
84 type 'term macro = 
85   (* Whelp's stuff *)
86   | WHint of loc * 'term 
87   | WMatch of loc * 'term 
88   | WInstance of loc * 'term 
89   | WLocate of loc * string
90   | WElim of loc * 'term
91   (* real macros *)
92 (*   | Abort of loc *)
93   | Print of loc * string
94   | Check of loc * 'term 
95   | Hint of loc
96   | Quit of loc
97 (*   | Redo of loc * int option
98   | Undo of loc * int option *)
99 (*   | Print of loc * print_kind *)
100   | Search_pat of loc * search_kind * string  (* searches with string pattern *)
101   | Search_term of loc * search_kind * 'term  (* searches with term pattern *)
102
103 type alias_spec =
104   | Ident_alias of string * string        (* identifier, uri *)
105   | Symbol_alias of string * int * string (* name, instance no, description *)
106   | Number_alias of int * string          (* instance no, description *)
107
108 type obj =
109   | Inductive of (string * CicNotationPt.term) list *
110       CicNotationPt.term inductive_type list
111       (** parameters, list of loc * mutual inductive types *)
112   | Theorem of thm_flavour * string * CicNotationPt.term * CicNotationPt.term option
113       (** flavour, name, type, body
114        * - name is absent when an unnamed theorem is being proved, tipically in
115        *   interactive usage
116        * - body is present when its given along with the command, otherwise it
117        *   will be given in proof editing mode using the tactical language
118        *)
119   | Record of
120      (string * CicNotationPt.term) list * string * CicNotationPt.term *
121       (string * CicNotationPt.term) list
122
123 type argument_pattern =
124   | IdentArg of int * string (* eta-depth, name *)
125
126 type cic_appl_pattern =
127   | UriPattern of UriManager.uri
128   | VarPattern of string
129   | ApplPattern of cic_appl_pattern list
130
131 type ('term,'obj) command =
132   | Default of loc * string * UriManager.uri list
133   | Include of loc * string
134   | Set of loc * string * string
135   | Drop of loc
136   | Qed of loc
137       (** name.
138        * Name is needed when theorem was started without providing a name
139        *)
140   | Coercion of loc * 'term
141   | Alias of loc * alias_spec
142       (** parameters, name, type, fields *) 
143   | Obj of loc * 'obj
144   | Notation of loc * 'term * Gramext.g_assoc option * int option * 'term
145       (* level 1 pattern, associativity, precedence, level 2 pattern *)
146   | Interpretation of loc * (string * argument_pattern list) * cic_appl_pattern
147
148     (* DEBUGGING *)
149   | Dump of loc (* dump grammar on stdout *)
150     (* DEBUGGING *)
151   | Render of loc * UriManager.uri (* render library object *)
152
153 type ('term, 'ident) tactical =
154   | Tactic of loc * ('term, 'ident) tactic
155   | Do of loc * int * ('term, 'ident) tactical
156   | Repeat of loc * ('term, 'ident) tactical
157   | Seq of loc * ('term, 'ident) tactical list (* sequential composition *)
158   | Then of loc * ('term, 'ident) tactical * ('term, 'ident) tactical list
159   | First of loc * ('term, 'ident) tactical list
160       (* try a sequence of loc * tacticals until one succeeds, fail otherwise *)
161   | Try of loc * ('term, 'ident) tactical (* try a tactical and mask failures *)
162   | Solve of loc * ('term, 'ident) tactical list
163
164
165 type ('term, 'obj, 'ident) code =
166   | Command of loc * ('term,'obj) command
167   | Macro of loc * 'term macro 
168   | Tactical of loc * ('term, 'ident) tactical
169              
170 type ('term, 'obj, 'ident) comment =
171   | Note of loc * string
172   | Code of loc * ('term, 'obj, 'ident) code
173              
174 type ('term, 'obj, 'ident) statement =
175   | Executable of loc * ('term, 'obj, 'ident) code
176   | Comment of loc * ('term, 'obj, 'ident) comment
177