1 (* Copyright (C) 2004, HELM Team.
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.
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.
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.
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,
22 * For details, see the HELM World-Wide-Web page,
23 * http://helm.cs.unibo.it/
26 type direction = [ `LeftToRight | `RightToLeft ]
27 type reduction_kind = [ `Reduce | `Simpl | `Whd | `Normalize ]
29 type loc = CicAst.location
31 type ('term, 'ident) pattern = 'term option * ('ident * 'term) list * 'term
33 type ('term, 'ident) tactic =
34 | Absurd of loc * 'term
35 | Apply of loc * 'term
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 (* what to elim, which principle to use *)
49 | ElimType of loc * 'term
50 | Exact of loc * 'term
53 | Fold of loc * reduction_kind * 'term * ('term, 'ident) pattern
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 *)
59 | Injection of loc * 'term
60 | Intros of loc * int option * 'ident list
61 | LApply of loc * int option * 'term list * 'term * 'ident option
63 | LetIn of loc * 'term * 'ident
64 | Reduce of loc * reduction_kind * ('term, 'ident) pattern
66 | Replace of loc * ('term, 'ident) pattern * 'term
67 | Rewrite of loc * direction * 'term * ('term, 'ident) pattern
72 | Transitivity of loc * 'term
82 (** <name, inductive/coinductive, type, constructor list>
83 * true means inductive, false coinductive *)
84 type 'term inductive_type = string * bool * 'term * (string * 'term) list
86 type search_kind = [ `Locate | `Hint | `Match | `Elim ]
88 type print_kind = [ `Env | `Coer ]
92 | WHint of loc * 'term
93 | WMatch of loc * 'term
94 | WInstance of loc * 'term
95 | WLocate of loc * string
96 | WElim of loc * 'term
99 | Print of loc * string
100 | Check of loc * 'term
103 (* | Redo of loc * int option
104 | Undo of loc * int option *)
105 (* | Print of loc * print_kind *)
106 | Search_pat of loc * search_kind * string (* searches with string pattern *)
107 | Search_term of loc * search_kind * 'term (* searches with term pattern *)
110 | Ident_alias of string * string (* identifier, uri *)
111 | Symbol_alias of string * int * string (* name, instance no, description *)
112 | Number_alias of int * string (* instance no, description *)
115 | Inductive of (string * CicAst.term) list * CicAst.term inductive_type list
116 (** parameters, list of loc * mutual inductive types *)
117 | Theorem of thm_flavour * string * CicAst.term * CicAst.term option
118 (** flavour, name, type, body
119 * - name is absent when an unnamed theorem is being proved, tipically in
121 * - body is present when its given along with the command, otherwise it
122 * will be given in proof editing mode using the tactical language
125 (string * CicAst.term) list * string * CicAst.term *
126 (string * CicAst.term) list
128 type ('term,'obj) command =
129 | Include of loc * string
130 | Set of loc * string * string
134 * Name is needed when theorem was started without providing a name
136 | Coercion of loc * 'term
137 | Alias of loc * alias_spec
138 (** parameters, name, type, fields *)
141 type ('term, 'ident) tactical =
142 | Tactic of loc * ('term, 'ident) tactic
143 | Do of loc * int * ('term, 'ident) tactical
144 | Repeat of loc * ('term, 'ident) tactical
145 | Seq of loc * ('term, 'ident) tactical list (* sequential composition *)
146 | Then of loc * ('term, 'ident) tactical * ('term, 'ident) tactical list
147 | Tries of loc * ('term, 'ident) tactical list
148 (* try a sequence of loc * tacticals until one succeeds, fail otherwise *)
149 | Try of loc * ('term, 'ident) tactical (* try a tactical and mask failures *)
152 type ('term, 'obj, 'ident) code =
153 | Command of loc * ('term,'obj) command
154 | Macro of loc * 'term macro
155 (* Macro are substantially queries, but since we are not the kind of
156 * peolpe that like to push "start" to turn off the computer
157 * we added this command *)
158 | Tactical of loc * ('term, 'ident) tactical
160 type ('term, 'obj, 'ident) comment =
161 | Note of loc * string
162 | Code of loc * ('term, 'obj, 'ident) code
164 type ('term, 'obj, 'ident) statement =
165 | Executable of loc * ('term, 'obj, 'ident) code
166 | Comment of loc * ('term, 'obj, 'ident) comment