author | wenzelm |
Thu, 18 May 2000 17:21:58 +0200 | |
changeset 8883 | 2a94bfd31285 |
parent 8881 | 0467dd0d66ff |
child 8896 | c80aba8c1d5e |
permissions | -rw-r--r-- |
7046 | 1 |
|
7895 | 2 |
\chapter{Basic Isar Language Elements}\label{ch:pure-syntax} |
7167 | 3 |
|
8515 | 4 |
Subsequently, we introduce the main part of Pure Isar theory and proof |
8547 | 5 |
commands, together with fundamental proof methods and attributes. |
8515 | 6 |
Chapter~\ref{ch:gen-tools} describes further Isar elements provided by generic |
7 |
tools and packages (such as the Simplifier) that are either part of Pure |
|
8 |
Isabelle or pre-installed by most object logics. Chapter~\ref{ch:hol-tools} |
|
9 |
refers to actual object-logic specific elements of Isabelle/HOL. |
|
7046 | 10 |
|
7167 | 11 |
\medskip |
12 |
||
13 |
Isar commands may be either \emph{proper} document constructors, or |
|
7466 | 14 |
\emph{improper commands}. Some proof methods and attributes introduced later |
15 |
are classified as improper as well. Improper Isar language elements, which |
|
16 |
are subsequently marked by $^*$, are often helpful when developing proof |
|
7981 | 17 |
documents, while their use is discouraged for the final outcome. Typical |
18 |
examples are diagnostic commands that print terms or theorems according to the |
|
19 |
current context; other commands even emulate old-style tactical theorem |
|
8547 | 20 |
proving. |
7167 | 21 |
|
7134 | 22 |
|
23 |
\section{Theory commands} |
|
24 |
||
7167 | 25 |
\subsection{Defining theories}\label{sec:begin-thy} |
7134 | 26 |
|
7895 | 27 |
\indexisarcmd{header}\indexisarcmd{theory}\indexisarcmd{end}\indexisarcmd{context} |
7134 | 28 |
\begin{matharray}{rcl} |
7895 | 29 |
\isarcmd{header} & : & \isarkeep{toplevel} \\ |
8510 | 30 |
\isarcmd{theory} & : & \isartrans{toplevel}{theory} \\ |
31 |
\isarcmd{context}^* & : & \isartrans{toplevel}{theory} \\ |
|
32 |
\isarcmd{end} & : & \isartrans{theory}{toplevel} \\ |
|
7134 | 33 |
\end{matharray} |
34 |
||
35 |
Isabelle/Isar ``new-style'' theories are either defined via theory files or |
|
7981 | 36 |
interactively. Both theory-level specifications and proofs are handled |
7335 | 37 |
uniformly --- occasionally definitional mechanisms even require some explicit |
38 |
proof as well. In contrast, ``old-style'' Isabelle theories support batch |
|
39 |
processing only, with the proof scripts collected in separate ML files. |
|
7134 | 40 |
|
7895 | 41 |
The first actual command of any theory has to be $\THEORY$, starting a new |
42 |
theory based on the merge of existing ones. Just preceding $\THEORY$, there |
|
43 |
may be an optional $\isarkeyword{header}$ declaration, which is relevant to |
|
44 |
document preparation only; it acts very much like a special pre-theory markup |
|
45 |
command (cf.\ \S\ref{sec:markup-thy} and \S\ref{sec:markup-thy}). The theory |
|
46 |
context may be also changed by $\CONTEXT$ without creating a new theory. In |
|
47 |
both cases, $\END$ concludes the theory development; it has to be the very |
|
8547 | 48 |
last command of any theory file. |
7134 | 49 |
|
50 |
\begin{rail} |
|
7895 | 51 |
'header' text |
52 |
; |
|
7134 | 53 |
'theory' name '=' (name + '+') filespecs? ':' |
54 |
; |
|
55 |
'context' name |
|
56 |
; |
|
57 |
'end' |
|
58 |
;; |
|
59 |
||
7167 | 60 |
filespecs: 'files' ((name | parname) +); |
7134 | 61 |
\end{rail} |
62 |
||
7167 | 63 |
\begin{descr} |
7895 | 64 |
\item [$\isarkeyword{header}~text$] provides plain text markup just preceding |
8547 | 65 |
the formal beginning of a theory. In actual document preparation the |
7895 | 66 |
corresponding {\LaTeX} macro \verb,\isamarkupheader, may be redefined to |
67 |
produce chapter or section headings. See also \S\ref{sec:markup-thy} and |
|
68 |
\S\ref{sec:markup-prf} for further markup commands. |
|
69 |
||
7981 | 70 |
\item [$\THEORY~A = B@1 + \cdots + B@n\colon$] commences a new theory $A$ |
71 |
based on existing ones $B@1 + \cdots + B@n$. Isabelle's theory loader |
|
72 |
system ensures that any of the base theories are properly loaded (and fully |
|
73 |
up-to-date when $\THEORY$ is executed interactively). The optional |
|
74 |
$\isarkeyword{files}$ specification declares additional dependencies on ML |
|
75 |
files. Unless put in parentheses, any file will be loaded immediately via |
|
76 |
$\isarcmd{use}$ (see also \S\ref{sec:ML}). The optional ML file |
|
77 |
\texttt{$A$.ML} that may be associated with any theory should \emph{not} be |
|
78 |
included in $\isarkeyword{files}$, though. |
|
7134 | 79 |
|
7895 | 80 |
\item [$\CONTEXT~B$] enters an existing theory context, basically in read-only |
7981 | 81 |
mode, so only a limited set of commands may be performed without destroying |
82 |
the theory. Just as for $\THEORY$, the theory loader ensures that $B$ is |
|
83 |
loaded and up-to-date. |
|
7175 | 84 |
|
7167 | 85 |
\item [$\END$] concludes the current theory definition or context switch. |
7981 | 86 |
Note that this command cannot be undone, but the whole theory definition has |
87 |
to be retracted. |
|
7167 | 88 |
\end{descr} |
7134 | 89 |
|
90 |
||
7895 | 91 |
\subsection{Theory markup commands}\label{sec:markup-thy} |
7134 | 92 |
|
7895 | 93 |
\indexisarcmd{chapter}\indexisarcmd{section}\indexisarcmd{subsection} |
94 |
\indexisarcmd{subsubsection}\indexisarcmd{text}\indexisarcmd{text-raw} |
|
7134 | 95 |
\begin{matharray}{rcl} |
96 |
\isarcmd{chapter} & : & \isartrans{theory}{theory} \\ |
|
7167 | 97 |
\isarcmd{section} & : & \isartrans{theory}{theory} \\ |
7134 | 98 |
\isarcmd{subsection} & : & \isartrans{theory}{theory} \\ |
99 |
\isarcmd{subsubsection} & : & \isartrans{theory}{theory} \\ |
|
100 |
\isarcmd{text} & : & \isartrans{theory}{theory} \\ |
|
7895 | 101 |
\isarcmd{text_raw} & : & \isartrans{theory}{theory} \\ |
7134 | 102 |
\end{matharray} |
103 |
||
7895 | 104 |
Apart from formal comments (see \S\ref{sec:comments}), markup commands provide |
7981 | 105 |
a structured way to insert text into the document generated from a theory (see |
7895 | 106 |
\cite{isabelle-sys} for more information on Isabelle's document preparation |
107 |
tools). |
|
7134 | 108 |
|
7895 | 109 |
\railalias{textraw}{text\_raw} |
110 |
\railterm{textraw} |
|
7134 | 111 |
|
112 |
\begin{rail} |
|
7895 | 113 |
('chapter' | 'section' | 'subsection' | 'subsubsection' | 'text' | textraw) text |
7134 | 114 |
; |
115 |
\end{rail} |
|
116 |
||
7167 | 117 |
\begin{descr} |
7335 | 118 |
\item [$\isarkeyword{chapter}$, $\isarkeyword{section}$, |
119 |
$\isarkeyword{subsection}$, and $\isarkeyword{subsubsection}$] mark chapter |
|
120 |
and section headings. |
|
7895 | 121 |
\item [$\TEXT$] specifies paragraphs of plain text, including references to |
122 |
formal entities.\footnote{The latter feature is not yet supported. |
|
123 |
Nevertheless, any source text of the form |
|
124 |
``\texttt{\at\ttlbrace$\dots$\ttrbrace}'' should be considered as reserved |
|
125 |
for future use.} |
|
126 |
\item [$\isarkeyword{text_raw}$] inserts {\LaTeX} source into the output, |
|
127 |
without additional markup. Thus the full range of document manipulations |
|
128 |
becomes available. A typical application would be to emit |
|
129 |
\verb,\begin{comment}, and \verb,\end{comment}, commands to exclude certain |
|
130 |
parts from the final document.\footnote{This requires the \texttt{comment} |
|
8547 | 131 |
package to be included in {\LaTeX}, of course.} |
7167 | 132 |
\end{descr} |
7134 | 133 |
|
8684 | 134 |
Any of these markup elements corresponds to a {\LaTeX} command with the name |
135 |
prefixed by \verb,\isamarkup,. For the sectioning commands this is a plain |
|
136 |
macro with a single argument, e.g.\ \verb,\isamarkupchapter{,\dots\verb,}, for |
|
137 |
$\isarkeyword{chapter}$. The $\isarkeyword{text}$ markup results in a |
|
138 |
{\LaTeX} environment \verb,\begin{isamarkuptext}, {\dots} |
|
139 |
\verb,\end{isamarkuptext},, while $\isarkeyword{text_raw}$ causes the text |
|
140 |
to be inserted directly into the {\LaTeX} source. |
|
7895 | 141 |
|
8485 | 142 |
\medskip |
143 |
||
144 |
Additional markup commands are available for proofs (see |
|
7895 | 145 |
\S\ref{sec:markup-prf}). Also note that the $\isarkeyword{header}$ |
8684 | 146 |
declaration (see \S\ref{sec:begin-thy}) admits to insert section markup just |
147 |
preceding the actual theory definition. |
|
7895 | 148 |
|
7134 | 149 |
|
7135 | 150 |
\subsection{Type classes and sorts}\label{sec:classes} |
7134 | 151 |
|
152 |
\indexisarcmd{classes}\indexisarcmd{classrel}\indexisarcmd{defaultsort} |
|
153 |
\begin{matharray}{rcl} |
|
154 |
\isarcmd{classes} & : & \isartrans{theory}{theory} \\ |
|
155 |
\isarcmd{classrel} & : & \isartrans{theory}{theory} \\ |
|
156 |
\isarcmd{defaultsort} & : & \isartrans{theory}{theory} \\ |
|
157 |
\end{matharray} |
|
158 |
||
159 |
\begin{rail} |
|
7167 | 160 |
'classes' (classdecl comment? +) |
7134 | 161 |
; |
162 |
'classrel' nameref '<' nameref comment? |
|
163 |
; |
|
164 |
'defaultsort' sort comment? |
|
165 |
; |
|
166 |
\end{rail} |
|
167 |
||
7167 | 168 |
\begin{descr} |
7335 | 169 |
\item [$\isarkeyword{classes}~c<\vec c$] declares class $c$ to be a subclass |
170 |
of existing classes $\vec c$. Cyclic class structures are ruled out. |
|
7134 | 171 |
\item [$\isarkeyword{classrel}~c@1<c@2$] states a subclass relation between |
172 |
existing classes $c@1$ and $c@2$. This is done axiomatically! The |
|
7895 | 173 |
$\isarkeyword{instance}$ command (see \S\ref{sec:axclass}) provides a way to |
7175 | 174 |
introduce proven class relations. |
7134 | 175 |
\item [$\isarkeyword{defaultsort}~s$] makes sort $s$ the new default sort for |
7895 | 176 |
any type variables given without sort constraints. Usually, the default |
8547 | 177 |
sort would be only changed when defining new object-logics. |
7167 | 178 |
\end{descr} |
7134 | 179 |
|
180 |
||
7315 | 181 |
\subsection{Primitive types and type abbreviations}\label{sec:types-pure} |
7134 | 182 |
|
183 |
\indexisarcmd{typedecl}\indexisarcmd{types}\indexisarcmd{nonterminals}\indexisarcmd{arities} |
|
184 |
\begin{matharray}{rcl} |
|
185 |
\isarcmd{types} & : & \isartrans{theory}{theory} \\ |
|
186 |
\isarcmd{typedecl} & : & \isartrans{theory}{theory} \\ |
|
187 |
\isarcmd{nonterminals} & : & \isartrans{theory}{theory} \\ |
|
188 |
\isarcmd{arities} & : & \isartrans{theory}{theory} \\ |
|
189 |
\end{matharray} |
|
190 |
||
191 |
\begin{rail} |
|
192 |
'types' (typespec '=' type infix? comment? +) |
|
193 |
; |
|
194 |
'typedecl' typespec infix? comment? |
|
195 |
; |
|
196 |
'nonterminals' (name +) comment? |
|
197 |
; |
|
198 |
'arities' (nameref '::' arity comment? +) |
|
199 |
; |
|
200 |
\end{rail} |
|
201 |
||
7167 | 202 |
\begin{descr} |
7335 | 203 |
\item [$\TYPES~(\vec\alpha)t = \tau$] introduces \emph{type synonym} |
7134 | 204 |
$(\vec\alpha)t$ for existing type $\tau$. Unlike actual type definitions, |
205 |
as are available in Isabelle/HOL for example, type synonyms are just purely |
|
7895 | 206 |
syntactic abbreviations without any logical significance. Internally, type |
7981 | 207 |
synonyms are fully expanded. |
7134 | 208 |
\item [$\isarkeyword{typedecl}~(\vec\alpha)t$] declares a new type constructor |
7895 | 209 |
$t$, intended as an actual logical type. Note that object-logics such as |
210 |
Isabelle/HOL override $\isarkeyword{typedecl}$ by their own version. |
|
7175 | 211 |
\item [$\isarkeyword{nonterminals}~\vec c$] declares $0$-ary type constructors |
212 |
$\vec c$ to act as purely syntactic types, i.e.\ nonterminal symbols of |
|
213 |
Isabelle's inner syntax of terms or types. |
|
7335 | 214 |
\item [$\isarkeyword{arities}~t::(\vec s)s$] augments Isabelle's order-sorted |
215 |
signature of types by new type constructor arities. This is done |
|
216 |
axiomatically! The $\isarkeyword{instance}$ command (see |
|
7895 | 217 |
\S\ref{sec:axclass}) provides a way to introduce proven type arities. |
7167 | 218 |
\end{descr} |
7134 | 219 |
|
220 |
||
7981 | 221 |
\subsection{Constants and simple definitions}\label{sec:consts} |
7134 | 222 |
|
7175 | 223 |
\indexisarcmd{consts}\indexisarcmd{defs}\indexisarcmd{constdefs}\indexoutertoken{constdecl} |
7134 | 224 |
\begin{matharray}{rcl} |
225 |
\isarcmd{consts} & : & \isartrans{theory}{theory} \\ |
|
226 |
\isarcmd{defs} & : & \isartrans{theory}{theory} \\ |
|
227 |
\isarcmd{constdefs} & : & \isartrans{theory}{theory} \\ |
|
228 |
\end{matharray} |
|
229 |
||
230 |
\begin{rail} |
|
231 |
'consts' (constdecl +) |
|
232 |
; |
|
7608 | 233 |
'defs' (axmdecl prop comment? +) |
7134 | 234 |
; |
235 |
'constdefs' (constdecl prop comment? +) |
|
236 |
; |
|
237 |
||
238 |
constdecl: name '::' type mixfix? comment? |
|
239 |
; |
|
240 |
\end{rail} |
|
241 |
||
7167 | 242 |
\begin{descr} |
7335 | 243 |
\item [$\CONSTS~c::\sigma$] declares constant $c$ to have any instance of type |
244 |
scheme $\sigma$. The optional mixfix annotations may attach concrete syntax |
|
7895 | 245 |
to the constants declared. |
7335 | 246 |
\item [$\DEFS~name: eqn$] introduces $eqn$ as a definitional axiom for some |
247 |
existing constant. See \cite[\S6]{isabelle-ref} for more details on the |
|
248 |
form of equations admitted as constant definitions. |
|
249 |
\item [$\isarkeyword{constdefs}~c::\sigma~eqn$] combines declarations and |
|
8547 | 250 |
definitions of constants, using the canonical name $c_def$ for the |
251 |
definitional axiom. |
|
7167 | 252 |
\end{descr} |
7134 | 253 |
|
254 |
||
7981 | 255 |
\subsection{Syntax and translations}\label{sec:syn-trans} |
7134 | 256 |
|
257 |
\indexisarcmd{syntax}\indexisarcmd{translations} |
|
258 |
\begin{matharray}{rcl} |
|
259 |
\isarcmd{syntax} & : & \isartrans{theory}{theory} \\ |
|
260 |
\isarcmd{translations} & : & \isartrans{theory}{theory} \\ |
|
261 |
\end{matharray} |
|
262 |
||
263 |
\begin{rail} |
|
264 |
'syntax' ('(' name 'output'? ')')? (constdecl +) |
|
265 |
; |
|
266 |
'translations' (transpat ('==' | '=>' | '<=') transpat comment? +) |
|
267 |
; |
|
268 |
transpat: ('(' nameref ')')? string |
|
269 |
; |
|
270 |
\end{rail} |
|
271 |
||
7167 | 272 |
\begin{descr} |
7175 | 273 |
\item [$\isarkeyword{syntax}~(mode)~decls$] is similar to $\CONSTS~decls$, |
274 |
except that the actual logical signature extension is omitted. Thus the |
|
275 |
context free grammar of Isabelle's inner syntax may be augmented in |
|
7335 | 276 |
arbitrary ways, independently of the logic. The $mode$ argument refers to |
8547 | 277 |
the print mode that the grammar rules belong; unless the \texttt{output} |
278 |
flag is given, all productions are added both to the input and output |
|
279 |
grammar. |
|
7175 | 280 |
\item [$\isarkeyword{translations}~rules$] specifies syntactic translation |
7981 | 281 |
rules (i.e.\ \emph{macros}): parse~/ print rules (\texttt{==}), parse rules |
7895 | 282 |
(\texttt{=>}), or print rules (\texttt{<=}). Translation patterns may be |
283 |
prefixed by the syntactic category to be used for parsing; the default is |
|
7134 | 284 |
\texttt{logic}. |
7167 | 285 |
\end{descr} |
7134 | 286 |
|
287 |
||
288 |
\subsection{Axioms and theorems} |
|
289 |
||
290 |
\indexisarcmd{axioms}\indexisarcmd{theorems}\indexisarcmd{lemmas} |
|
291 |
\begin{matharray}{rcl} |
|
292 |
\isarcmd{axioms} & : & \isartrans{theory}{theory} \\ |
|
293 |
\isarcmd{theorems} & : & \isartrans{theory}{theory} \\ |
|
294 |
\isarcmd{lemmas} & : & \isartrans{theory}{theory} \\ |
|
295 |
\end{matharray} |
|
296 |
||
297 |
\begin{rail} |
|
7135 | 298 |
'axioms' (axmdecl prop comment? +) |
7134 | 299 |
; |
300 |
('theorems' | 'lemmas') thmdef? thmrefs |
|
301 |
; |
|
302 |
\end{rail} |
|
303 |
||
7167 | 304 |
\begin{descr} |
7335 | 305 |
\item [$\isarkeyword{axioms}~a: \phi$] introduces arbitrary statements as |
7895 | 306 |
axioms of the meta-logic. In fact, axioms are ``axiomatic theorems'', and |
307 |
may be referred later just as any other theorem. |
|
7134 | 308 |
|
309 |
Axioms are usually only introduced when declaring new logical systems. |
|
7175 | 310 |
Everyday work is typically done the hard way, with proper definitions and |
8547 | 311 |
actual proven theorems. |
7335 | 312 |
\item [$\isarkeyword{theorems}~a = \vec b$] stores lists of existing theorems. |
8547 | 313 |
Typical applications would also involve attributes, to declare Simplifier |
314 |
rules, for example. |
|
7134 | 315 |
\item [$\isarkeyword{lemmas}$] is similar to $\isarkeyword{theorems}$, but |
316 |
tags the results as ``lemma''. |
|
7167 | 317 |
\end{descr} |
7134 | 318 |
|
319 |
||
7167 | 320 |
\subsection{Name spaces} |
7134 | 321 |
|
8726 | 322 |
\indexisarcmd{global}\indexisarcmd{local}\indexisarcmd{hide} |
7134 | 323 |
\begin{matharray}{rcl} |
324 |
\isarcmd{global} & : & \isartrans{theory}{theory} \\ |
|
325 |
\isarcmd{local} & : & \isartrans{theory}{theory} \\ |
|
8726 | 326 |
\isarcmd{hide} & : & \isartrans{theory}{theory} \\ |
7134 | 327 |
\end{matharray} |
328 |
||
8726 | 329 |
\begin{rail} |
330 |
'global' comment? |
|
331 |
; |
|
332 |
'local' comment? |
|
333 |
; |
|
334 |
'hide' name (nameref + ) comment? |
|
335 |
; |
|
336 |
\end{rail} |
|
337 |
||
7895 | 338 |
Isabelle organizes any kind of name declarations (of types, constants, |
8547 | 339 |
theorems etc.) by separate hierarchically structured name spaces. Normally |
8726 | 340 |
the user does not have to control the behavior of name spaces by hand, yet the |
341 |
following commands provide some way to do so. |
|
7175 | 342 |
|
7167 | 343 |
\begin{descr} |
344 |
\item [$\isarkeyword{global}$ and $\isarkeyword{local}$] change the current |
|
345 |
name declaration mode. Initially, theories start in $\isarkeyword{local}$ |
|
346 |
mode, causing all names to be automatically qualified by the theory name. |
|
7895 | 347 |
Changing this to $\isarkeyword{global}$ causes all names to be declared |
348 |
without the theory prefix, until $\isarkeyword{local}$ is declared again. |
|
8726 | 349 |
|
350 |
Note that global names are prone to get hidden accidently later, when |
|
351 |
qualified names of the same base name are introduced. |
|
352 |
||
353 |
\item [$\isarkeyword{hide}~space~names$] removes declarations from a given |
|
354 |
name space (which may be $class$, $type$, or $const$). Hidden objects |
|
355 |
remain valid within the logic, but are inaccessible from user input. In |
|
356 |
output, the special qualifier ``$\mathord?\mathord?$'' is prefixed to the |
|
357 |
full internal name. |
|
358 |
||
359 |
Unqualified (global) names may not be hidden deliberately. |
|
7167 | 360 |
\end{descr} |
7134 | 361 |
|
362 |
||
7167 | 363 |
\subsection{Incorporating ML code}\label{sec:ML} |
7134 | 364 |
|
8682 | 365 |
\indexisarcmd{use}\indexisarcmd{ML}\indexisarcmd{ML-command} |
366 |
\indexisarcmd{ML-setup}\indexisarcmd{setup} |
|
7134 | 367 |
\begin{matharray}{rcl} |
368 |
\isarcmd{use} & : & \isartrans{\cdot}{\cdot} \\ |
|
369 |
\isarcmd{ML} & : & \isartrans{\cdot}{\cdot} \\ |
|
8682 | 370 |
\isarcmd{ML_command} & : & \isartrans{\cdot}{\cdot} \\ |
7895 | 371 |
\isarcmd{ML_setup} & : & \isartrans{theory}{theory} \\ |
7175 | 372 |
\isarcmd{setup} & : & \isartrans{theory}{theory} \\ |
7134 | 373 |
\end{matharray} |
374 |
||
7895 | 375 |
\railalias{MLsetup}{ML\_setup} |
376 |
\railterm{MLsetup} |
|
377 |
||
8682 | 378 |
\railalias{MLcommand}{ML\_command} |
379 |
\railterm{MLcommand} |
|
380 |
||
7134 | 381 |
\begin{rail} |
382 |
'use' name |
|
383 |
; |
|
8682 | 384 |
('ML' | MLcommand | MLsetup | 'setup') text |
7134 | 385 |
; |
386 |
\end{rail} |
|
387 |
||
7167 | 388 |
\begin{descr} |
7175 | 389 |
\item [$\isarkeyword{use}~file$] reads and executes ML commands from $file$. |
7466 | 390 |
The current theory context (if present) is passed down to the ML session, |
7981 | 391 |
but may not be modified. Furthermore, the file name is checked with the |
7466 | 392 |
$\isarkeyword{files}$ dependency declaration given in the theory header (see |
393 |
also \S\ref{sec:begin-thy}). |
|
394 |
||
8682 | 395 |
\item [$\isarkeyword{ML}~text$ and $\isarkeyword{ML_command}~text$] execute ML |
396 |
commands from $text$. The theory context is passed in the same way as for |
|
397 |
$\isarkeyword{use}$, but may not be changed. Note that |
|
398 |
$\isarkeyword{ML_command}$ is less verbose than plain $\isarkeyword{ML}$. |
|
7895 | 399 |
|
400 |
\item [$\isarkeyword{ML_setup}~text$] executes ML commands from $text$. The |
|
401 |
theory context is passed down to the ML session, and fetched back |
|
402 |
afterwards. Thus $text$ may actually change the theory as a side effect. |
|
403 |
||
7167 | 404 |
\item [$\isarkeyword{setup}~text$] changes the current theory context by |
8379 | 405 |
applying $text$, which refers to an ML expression of type |
406 |
\texttt{(theory~->~theory)~list}. The $\isarkeyword{setup}$ command is the |
|
8547 | 407 |
canonical way to initialize any object-logic specific tools and packages |
408 |
written in ML. |
|
7167 | 409 |
\end{descr} |
7134 | 410 |
|
411 |
||
8250 | 412 |
\subsection{Syntax translation functions} |
7134 | 413 |
|
8250 | 414 |
\indexisarcmd{parse-ast-translation}\indexisarcmd{parse-translation} |
415 |
\indexisarcmd{print-translation}\indexisarcmd{typed-print-translation} |
|
416 |
\indexisarcmd{print-ast-translation}\indexisarcmd{token-translation} |
|
417 |
\begin{matharray}{rcl} |
|
418 |
\isarcmd{parse_ast_translation} & : & \isartrans{theory}{theory} \\ |
|
419 |
\isarcmd{parse_translation} & : & \isartrans{theory}{theory} \\ |
|
420 |
\isarcmd{print_translation} & : & \isartrans{theory}{theory} \\ |
|
421 |
\isarcmd{typed_print_translation} & : & \isartrans{theory}{theory} \\ |
|
422 |
\isarcmd{print_ast_translation} & : & \isartrans{theory}{theory} \\ |
|
423 |
\isarcmd{token_translation} & : & \isartrans{theory}{theory} \\ |
|
424 |
\end{matharray} |
|
7134 | 425 |
|
8250 | 426 |
Syntax translation functions written in ML admit almost arbitrary |
427 |
manipulations of Isabelle's inner syntax. Any of the above commands have a |
|
428 |
single \railqtoken{text} argument that refers to an ML expression of |
|
8379 | 429 |
appropriate type. |
430 |
||
431 |
\begin{ttbox} |
|
432 |
val parse_ast_translation : (string * (ast list -> ast)) list |
|
433 |
val parse_translation : (string * (term list -> term)) list |
|
434 |
val print_translation : (string * (term list -> term)) list |
|
435 |
val typed_print_translation : |
|
436 |
(string * (bool -> typ -> term list -> term)) list |
|
437 |
val print_ast_translation : (string * (ast list -> ast)) list |
|
438 |
val token_translation : |
|
439 |
(string * string * (string -> string * real)) list |
|
440 |
\end{ttbox} |
|
441 |
See \cite[\S8]{isabelle-ref} for more information on syntax transformations. |
|
7134 | 442 |
|
443 |
||
444 |
\subsection{Oracles} |
|
445 |
||
446 |
\indexisarcmd{oracle} |
|
447 |
\begin{matharray}{rcl} |
|
448 |
\isarcmd{oracle} & : & \isartrans{theory}{theory} \\ |
|
449 |
\end{matharray} |
|
450 |
||
7175 | 451 |
Oracles provide an interface to external reasoning systems, without giving up |
452 |
control completely --- each theorem carries a derivation object recording any |
|
453 |
oracle invocation. See \cite[\S6]{isabelle-ref} for more information. |
|
454 |
||
7134 | 455 |
\begin{rail} |
456 |
'oracle' name '=' text comment? |
|
457 |
; |
|
458 |
\end{rail} |
|
459 |
||
7167 | 460 |
\begin{descr} |
7175 | 461 |
\item [$\isarkeyword{oracle}~name=text$] declares oracle $name$ to be ML |
8379 | 462 |
function $text$, which has to be of type |
463 |
\texttt{Sign.sg~*~Object.T~->~term}. |
|
7167 | 464 |
\end{descr} |
7134 | 465 |
|
466 |
||
467 |
\section{Proof commands} |
|
468 |
||
7987 | 469 |
Proof commands perform transitions of Isar/VM machine configurations, which |
7315 | 470 |
are block-structured, consisting of a stack of nodes with three main |
7335 | 471 |
components: logical proof context, current facts, and open goals. Isar/VM |
8547 | 472 |
transitions are \emph{typed} according to the following three different modes |
473 |
of operation: |
|
7167 | 474 |
\begin{descr} |
475 |
\item [$proof(prove)$] means that a new goal has just been stated that is now |
|
8547 | 476 |
to be \emph{proven}; the next command may refine it by some proof method, |
477 |
and enter a sub-proof to establish the actual result. |
|
7167 | 478 |
\item [$proof(state)$] is like an internal theory mode: the context may be |
7987 | 479 |
augmented by \emph{stating} additional assumptions, intermediate results |
480 |
etc. |
|
7895 | 481 |
\item [$proof(chain)$] is intermediate between $proof(state)$ and |
7987 | 482 |
$proof(prove)$: existing facts (i.e.\ the contents of the special ``$this$'' |
483 |
register) have been just picked up in order to be used when refining the |
|
484 |
goal claimed next. |
|
7167 | 485 |
\end{descr} |
7134 | 486 |
|
7167 | 487 |
|
7895 | 488 |
\subsection{Proof markup commands}\label{sec:markup-prf} |
7167 | 489 |
|
7987 | 490 |
\indexisarcmd{sect}\indexisarcmd{subsect}\indexisarcmd{subsubsect} |
7895 | 491 |
\indexisarcmd{txt}\indexisarcmd{txt-raw} |
7134 | 492 |
\begin{matharray}{rcl} |
8101 | 493 |
\isarcmd{sect} & : & \isartrans{proof}{proof} \\ |
494 |
\isarcmd{subsect} & : & \isartrans{proof}{proof} \\ |
|
495 |
\isarcmd{subsubsect} & : & \isartrans{proof}{proof} \\ |
|
496 |
\isarcmd{txt} & : & \isartrans{proof}{proof} \\ |
|
497 |
\isarcmd{txt_raw} & : & \isartrans{proof}{proof} \\ |
|
7134 | 498 |
\end{matharray} |
499 |
||
7895 | 500 |
These markup commands for proof mode closely correspond to the ones of theory |
8684 | 501 |
mode (see \S\ref{sec:markup-thy}). |
7895 | 502 |
|
503 |
\railalias{txtraw}{txt\_raw} |
|
504 |
\railterm{txtraw} |
|
7175 | 505 |
|
7134 | 506 |
\begin{rail} |
7895 | 507 |
('sect' | 'subsect' | 'subsubsect' | 'txt' | txtraw) text |
7134 | 508 |
; |
509 |
\end{rail} |
|
510 |
||
511 |
||
7315 | 512 |
\subsection{Proof context}\label{sec:proof-context} |
7134 | 513 |
|
7315 | 514 |
\indexisarcmd{fix}\indexisarcmd{assume}\indexisarcmd{presume}\indexisarcmd{def} |
7134 | 515 |
\begin{matharray}{rcl} |
516 |
\isarcmd{fix} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
517 |
\isarcmd{assume} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
518 |
\isarcmd{presume} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
519 |
\isarcmd{def} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
520 |
\end{matharray} |
|
521 |
||
7315 | 522 |
The logical proof context consists of fixed variables and assumptions. The |
523 |
former closely correspond to Skolem constants, or meta-level universal |
|
524 |
quantification as provided by the Isabelle/Pure logical framework. |
|
525 |
Introducing some \emph{arbitrary, but fixed} variable via $\FIX x$ results in |
|
7987 | 526 |
a local value that may be used in the subsequent proof as any other variable |
7895 | 527 |
or constant. Furthermore, any result $\edrv \phi[x]$ exported from the |
7987 | 528 |
context will be universally closed wrt.\ $x$ at the outermost level: $\edrv |
529 |
\All x \phi$ (this is expressed using Isabelle's meta-variables). |
|
7315 | 530 |
|
531 |
Similarly, introducing some assumption $\chi$ has two effects. On the one |
|
532 |
hand, a local theorem is created that may be used as a fact in subsequent |
|
7895 | 533 |
proof steps. On the other hand, any result $\chi \drv \phi$ exported from the |
534 |
context becomes conditional wrt.\ the assumption: $\edrv \chi \Imp \phi$. |
|
535 |
Thus, solving an enclosing goal using such a result would basically introduce |
|
536 |
a new subgoal stemming from the assumption. How this situation is handled |
|
537 |
depends on the actual version of assumption command used: while $\ASSUMENAME$ |
|
538 |
insists on solving the subgoal by unification with some premise of the goal, |
|
539 |
$\PRESUMENAME$ leaves the subgoal unchanged in order to be proved later by the |
|
540 |
user. |
|
7315 | 541 |
|
7319 | 542 |
Local definitions, introduced by $\DEF{}{x \equiv t}$, are achieved by |
7987 | 543 |
combining $\FIX x$ with another version of assumption that causes any |
544 |
hypothetical equation $x \equiv t$ to be eliminated by the reflexivity rule. |
|
545 |
Thus, exporting some result $x \equiv t \drv \phi[x]$ yields $\edrv \phi[t]$. |
|
7175 | 546 |
|
7134 | 547 |
\begin{rail} |
7431 | 548 |
'fix' (vars + 'and') comment? |
7134 | 549 |
; |
7315 | 550 |
('assume' | 'presume') (assm comment? + 'and') |
7134 | 551 |
; |
7175 | 552 |
'def' thmdecl? \\ var '==' term termpat? comment? |
7134 | 553 |
; |
554 |
||
555 |
var: name ('::' type)? |
|
556 |
; |
|
7458 | 557 |
vars: (name+) ('::' type)? |
7431 | 558 |
; |
7315 | 559 |
assm: thmdecl? (prop proppat? +) |
560 |
; |
|
7134 | 561 |
\end{rail} |
562 |
||
7167 | 563 |
\begin{descr} |
8547 | 564 |
\item [$\FIX{\vec x}$] introduces local \emph{arbitrary, but fixed} variables |
565 |
$\vec x$. |
|
8515 | 566 |
\item [$\ASSUME{a}{\vec\phi}$ and $\PRESUME{a}{\vec\phi}$] introduce local |
567 |
theorems $\vec\phi$ by assumption. Subsequent results applied to an |
|
568 |
enclosing goal (e.g.\ by $\SHOWNAME$) are handled as follows: $\ASSUMENAME$ |
|
569 |
expects to be able to unify with existing premises in the goal, while |
|
570 |
$\PRESUMENAME$ leaves $\vec\phi$ as new subgoals. |
|
7335 | 571 |
|
572 |
Several lists of assumptions may be given (separated by |
|
7895 | 573 |
$\isarkeyword{and}$); the resulting list of current facts consists of all of |
574 |
these concatenated. |
|
7315 | 575 |
\item [$\DEF{a}{x \equiv t}$] introduces a local (non-polymorphic) definition. |
576 |
In results exported from the context, $x$ is replaced by $t$. Basically, |
|
7987 | 577 |
$\DEF{}{x \equiv t}$ abbreviates $\FIX{x}~\ASSUME{}{x \equiv t}$, with the |
7335 | 578 |
resulting hypothetical equation solved by reflexivity. |
7431 | 579 |
|
580 |
The default name for the definitional equation is $x_def$. |
|
7167 | 581 |
\end{descr} |
582 |
||
7895 | 583 |
The special name $prems$\indexisarthm{prems} refers to all assumptions of the |
584 |
current context as a list of theorems. |
|
7315 | 585 |
|
7167 | 586 |
|
587 |
\subsection{Facts and forward chaining} |
|
588 |
||
589 |
\indexisarcmd{note}\indexisarcmd{then}\indexisarcmd{from}\indexisarcmd{with} |
|
590 |
\begin{matharray}{rcl} |
|
591 |
\isarcmd{note} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
592 |
\isarcmd{then} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
593 |
\isarcmd{from} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
594 |
\isarcmd{with} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
595 |
\end{matharray} |
|
596 |
||
7319 | 597 |
New facts are established either by assumption or proof of local statements. |
7335 | 598 |
Any fact will usually be involved in further proofs, either as explicit |
8547 | 599 |
arguments of proof methods, or when forward chaining towards the next goal via |
7335 | 600 |
$\THEN$ (and variants). Note that the special theorem name |
7987 | 601 |
$this$\indexisarthm{this} refers to the most recently established facts. |
7167 | 602 |
\begin{rail} |
603 |
'note' thmdef? thmrefs comment? |
|
604 |
; |
|
605 |
'then' comment? |
|
606 |
; |
|
607 |
('from' | 'with') thmrefs comment? |
|
608 |
; |
|
609 |
\end{rail} |
|
610 |
||
611 |
\begin{descr} |
|
7175 | 612 |
\item [$\NOTE{a}{\vec b}$] recalls existing facts $\vec b$, binding the result |
613 |
as $a$. Note that attributes may be involved as well, both on the left and |
|
614 |
right hand sides. |
|
7167 | 615 |
\item [$\THEN$] indicates forward chaining by the current facts in order to |
7895 | 616 |
establish the goal to be claimed next. The initial proof method invoked to |
617 |
refine that will be offered the facts to do ``anything appropriate'' (cf.\ |
|
618 |
also \S\ref{sec:proof-steps}). For example, method $rule$ (see |
|
8515 | 619 |
\S\ref{sec:pure-meth-att}) would typically do an elimination rather than an |
7895 | 620 |
introduction. Automatic methods usually insert the facts into the goal |
8547 | 621 |
state before operation. This provides a simple scheme to control relevance |
622 |
of facts in automated proof search. |
|
7335 | 623 |
\item [$\FROM{\vec b}$] abbreviates $\NOTE{}{\vec b}~\THEN$; thus $\THEN$ is |
7458 | 624 |
equivalent to $\FROM{this}$. |
7175 | 625 |
\item [$\WITH{\vec b}$] abbreviates $\FROM{\vec b~facts}$; thus the forward |
626 |
chaining is from earlier facts together with the current ones. |
|
7167 | 627 |
\end{descr} |
628 |
||
8515 | 629 |
Basic proof methods (such as $rule$, see \S\ref{sec:pure-meth-att}) expect |
7895 | 630 |
multiple facts to be given in their proper order, corresponding to a prefix of |
631 |
the premises of the rule involved. Note that positions may be easily skipped |
|
8547 | 632 |
using something like $\FROM{\text{\texttt{_}}~a~b}$, for example. This |
633 |
involves the trivial rule $\PROP\psi \Imp \PROP\psi$, which happens to be |
|
634 |
bound in Isabelle/Pure as ``\texttt{_}'' |
|
635 |
(underscore).\indexisarthm{_@\texttt{_}} |
|
7389 | 636 |
|
7167 | 637 |
|
638 |
\subsection{Goal statements} |
|
639 |
||
640 |
\indexisarcmd{theorem}\indexisarcmd{lemma} |
|
641 |
\indexisarcmd{have}\indexisarcmd{show}\indexisarcmd{hence}\indexisarcmd{thus} |
|
642 |
\begin{matharray}{rcl} |
|
643 |
\isarcmd{theorem} & : & \isartrans{theory}{proof(prove)} \\ |
|
644 |
\isarcmd{lemma} & : & \isartrans{theory}{proof(prove)} \\ |
|
7987 | 645 |
\isarcmd{have} & : & \isartrans{proof(state) ~|~ proof(chain)}{proof(prove)} \\ |
646 |
\isarcmd{show} & : & \isartrans{proof(state) ~|~ proof(chain)}{proof(prove)} \\ |
|
7167 | 647 |
\isarcmd{hence} & : & \isartrans{proof(state)}{proof(prove)} \\ |
648 |
\isarcmd{thus} & : & \isartrans{proof(state)}{proof(prove)} \\ |
|
649 |
\end{matharray} |
|
650 |
||
7175 | 651 |
Proof mode is entered from theory mode by initial goal commands $\THEOREMNAME$ |
7895 | 652 |
and $\LEMMANAME$. New local goals may be claimed within proof mode as well. |
653 |
Four variants are available, indicating whether the result is meant to solve |
|
8547 | 654 |
some pending goal or whether forward chaining is indicated. |
7175 | 655 |
|
7167 | 656 |
\begin{rail} |
657 |
('theorem' | 'lemma') goal |
|
658 |
; |
|
659 |
('have' | 'show' | 'hence' | 'thus') goal |
|
660 |
; |
|
661 |
||
8632 | 662 |
goal: thmdecl? prop proppat? comment? |
7167 | 663 |
; |
664 |
\end{rail} |
|
665 |
||
666 |
\begin{descr} |
|
7335 | 667 |
\item [$\THEOREM{a}{\phi}$] enters proof mode with $\phi$ as main goal, |
8547 | 668 |
eventually resulting in some theorem $\turn \phi$ to be put back into the |
669 |
theory. |
|
7987 | 670 |
\item [$\LEMMA{a}{\phi}$] is similar to $\THEOREMNAME$, but tags the result as |
7167 | 671 |
``lemma''. |
7335 | 672 |
\item [$\HAVE{a}{\phi}$] claims a local goal, eventually resulting in a |
7167 | 673 |
theorem with the current assumption context as hypotheses. |
7335 | 674 |
\item [$\SHOW{a}{\phi}$] is similar to $\HAVE{a}{\phi}$, but solves some |
7895 | 675 |
pending goal with the result \emph{exported} into the corresponding context |
676 |
(cf.\ \S\ref{sec:proof-context}). |
|
677 |
\item [$\HENCENAME$] abbreviates $\THEN~\HAVENAME$, i.e.\ claims a local goal |
|
678 |
to be proven by forward chaining the current facts. Note that $\HENCENAME$ |
|
679 |
is also equivalent to $\FROM{this}~\HAVENAME$. |
|
680 |
\item [$\THUSNAME$] abbreviates $\THEN~\SHOWNAME$. Note that $\THUSNAME$ is |
|
681 |
also equivalent to $\FROM{this}~\SHOWNAME$. |
|
7167 | 682 |
\end{descr} |
683 |
||
684 |
||
685 |
\subsection{Initial and terminal proof steps}\label{sec:proof-steps} |
|
686 |
||
7175 | 687 |
\indexisarcmd{proof}\indexisarcmd{qed}\indexisarcmd{by} |
688 |
\indexisarcmd{.}\indexisarcmd{..}\indexisarcmd{sorry} |
|
689 |
\begin{matharray}{rcl} |
|
690 |
\isarcmd{proof} & : & \isartrans{proof(prove)}{proof(state)} \\ |
|
691 |
\isarcmd{qed} & : & \isartrans{proof(state)}{proof(state) ~|~ theory} \\ |
|
692 |
\isarcmd{by} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
693 |
\isarcmd{.\,.} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
694 |
\isarcmd{.} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
695 |
\isarcmd{sorry} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
696 |
\end{matharray} |
|
697 |
||
8547 | 698 |
Arbitrary goal refinement via tactics is considered harmful. Properly, the |
7335 | 699 |
Isar framework admits proof methods to be invoked in two places only. |
7167 | 700 |
\begin{enumerate} |
7175 | 701 |
\item An \emph{initial} refinement step $\PROOF{m@1}$ reduces a newly stated |
7335 | 702 |
goal to a number of sub-goals that are to be solved later. Facts are passed |
7895 | 703 |
to $m@1$ for forward chaining, if so indicated by $proof(chain)$ mode. |
7167 | 704 |
|
7987 | 705 |
\item A \emph{terminal} conclusion step $\QED{m@2}$ is intended to solve |
706 |
remaining goals. No facts are passed to $m@2$. |
|
7167 | 707 |
\end{enumerate} |
708 |
||
8547 | 709 |
The only other proper way to affect pending goals is by $\SHOWNAME$, which |
710 |
involves an explicit statement of what is to be solved. |
|
7167 | 711 |
|
7175 | 712 |
\medskip |
713 |
||
7167 | 714 |
Also note that initial proof methods should either solve the goal completely, |
7895 | 715 |
or constitute some well-understood reduction to new sub-goals. Arbitrary |
716 |
automatic proof tools that are prone leave a large number of badly structured |
|
717 |
sub-goals are no help in continuing the proof document in any intelligible |
|
7987 | 718 |
way. |
7167 | 719 |
|
7175 | 720 |
\medskip |
721 |
||
8547 | 722 |
Unless given explicitly by the user, the default initial method is ``$rule$'', |
723 |
which applies a single standard elimination or introduction rule according to |
|
724 |
the topmost symbol involved. There is no separate default terminal method. |
|
725 |
Any remaining goals are always solved by assumption in the very last step. |
|
7167 | 726 |
|
727 |
\begin{rail} |
|
728 |
'proof' interest? meth? comment? |
|
729 |
; |
|
730 |
'qed' meth? comment? |
|
731 |
; |
|
732 |
'by' meth meth? comment? |
|
733 |
; |
|
734 |
('.' | '..' | 'sorry') comment? |
|
735 |
; |
|
736 |
||
737 |
meth: method interest? |
|
738 |
; |
|
739 |
\end{rail} |
|
740 |
||
741 |
\begin{descr} |
|
7335 | 742 |
\item [$\PROOF{m@1}$] refines the goal by proof method $m@1$; facts for |
743 |
forward chaining are passed if so indicated by $proof(chain)$ mode. |
|
744 |
\item [$\QED{m@2}$] refines any remaining goals by proof method $m@2$ and |
|
7895 | 745 |
concludes the sub-proof by assumption. If the goal had been $\SHOWNAME$ (or |
746 |
$\THUSNAME$), some pending sub-goal is solved as well by the rule resulting |
|
747 |
from the result \emph{exported} into the enclosing goal context. Thus |
|
748 |
$\QEDNAME$ may fail for two reasons: either $m@2$ fails, or the resulting |
|
749 |
rule does not fit to any pending goal\footnote{This includes any additional |
|
750 |
``strong'' assumptions as introduced by $\ASSUMENAME$.} of the enclosing |
|
751 |
context. Debugging such a situation might involve temporarily changing |
|
752 |
$\SHOWNAME$ into $\HAVENAME$, or weakening the local context by replacing |
|
753 |
some occurrences of $\ASSUMENAME$ by $\PRESUMENAME$. |
|
754 |
\item [$\BYY{m@1}{m@2}$] is a \emph{terminal proof}\index{proof!terminal}; it |
|
7987 | 755 |
abbreviates $\PROOF{m@1}~\QED{m@2}$, with backtracking across both methods, |
756 |
though. Debugging an unsuccessful $\BYY{m@1}{m@2}$ commands might be done |
|
7895 | 757 |
by expanding its definition; in many cases $\PROOF{m@1}$ is already |
7175 | 758 |
sufficient to see what is going wrong. |
7895 | 759 |
\item [``$\DDOT$''] is a \emph{default proof}\index{proof!default}; it |
8515 | 760 |
abbreviates $\BY{rule}$. |
7895 | 761 |
\item [``$\DOT$''] is a \emph{trivial proof}\index{proof!trivial}; it |
8195 | 762 |
abbreviates $\BY{this}$. |
8379 | 763 |
\item [$\SORRY$] is a \emph{fake proof}\index{proof!fake}; provided that the |
764 |
\texttt{quick_and_dirty} flag is enabled, $\SORRY$ pretends to solve the |
|
8515 | 765 |
goal without further ado. Of course, the result would be a fake theorem |
766 |
only, involving some oracle in its internal derivation object (this is |
|
767 |
indicated as ``$[!]$'' in the printed result). The main application of |
|
768 |
$\SORRY$ is to support experimentation and top-down proof development. |
|
769 |
\end{descr} |
|
770 |
||
771 |
||
772 |
\subsection{Fundamental methods and attributes}\label{sec:pure-meth-att} |
|
773 |
||
8547 | 774 |
The following proof methods and attributes refer to basic logical operations |
775 |
of Isar. Further methods and attributes are provided by several generic and |
|
776 |
object-logic specific tools and packages (see chapters \ref{ch:gen-tools} and |
|
777 |
\ref{ch:hol-tools}). |
|
8515 | 778 |
|
779 |
\indexisarmeth{assumption}\indexisarmeth{this}\indexisarmeth{rule}\indexisarmeth{$-$} |
|
780 |
\indexisaratt{intro}\indexisaratt{elim}\indexisaratt{dest} |
|
781 |
\indexisaratt{OF}\indexisaratt{of} |
|
782 |
\begin{matharray}{rcl} |
|
783 |
assumption & : & \isarmeth \\ |
|
784 |
this & : & \isarmeth \\ |
|
785 |
rule & : & \isarmeth \\ |
|
786 |
- & : & \isarmeth \\ |
|
787 |
OF & : & \isaratt \\ |
|
788 |
of & : & \isaratt \\ |
|
789 |
intro & : & \isaratt \\ |
|
790 |
elim & : & \isaratt \\ |
|
791 |
dest & : & \isaratt \\ |
|
792 |
delrule & : & \isaratt \\ |
|
793 |
\end{matharray} |
|
794 |
||
795 |
\begin{rail} |
|
8547 | 796 |
'rule' thmrefs? |
8515 | 797 |
; |
798 |
'OF' thmrefs |
|
799 |
; |
|
8693 | 800 |
'of' insts ('concl' ':' insts)? |
8515 | 801 |
; |
802 |
\end{rail} |
|
803 |
||
804 |
\begin{descr} |
|
805 |
\item [$assumption$] solves some goal by a single assumption step. Any facts |
|
806 |
given (${} \le 1$) are guaranteed to participate in the refinement. Recall |
|
807 |
that $\QEDNAME$ (see \S\ref{sec:proof-steps}) already concludes any |
|
808 |
remaining sub-goals by assumption. |
|
809 |
\item [$this$] applies all of the current facts directly as rules. Recall |
|
810 |
that ``$\DOT$'' (dot) abbreviates $\BY{this}$. |
|
8547 | 811 |
\item [$rule~\vec a$] applies some rule given as argument in backward manner; |
8515 | 812 |
facts are used to reduce the rule before applying it to the goal. Thus |
813 |
$rule$ without facts is plain \emph{introduction}, while with facts it |
|
814 |
becomes \emph{elimination}. |
|
815 |
||
8547 | 816 |
When no arguments are given, the $rule$ method tries to pick appropriate |
817 |
rules automatically, as declared in the current context using the $intro$, |
|
818 |
$elim$, $dest$ attributes (see below). This is the default behavior of |
|
819 |
$\PROOFNAME$ and ``$\DDOT$'' (double-dot) steps (see |
|
8515 | 820 |
\S\ref{sec:proof-steps}). |
821 |
\item [``$-$''] does nothing but insert the forward chaining facts as premises |
|
822 |
into the goal. Note that command $\PROOFNAME$ without any method actually |
|
823 |
performs a single reduction step using the $rule$ method; thus a plain |
|
824 |
\emph{do-nothing} proof step would be $\PROOF{-}$ rather than $\PROOFNAME$ |
|
825 |
alone. |
|
8547 | 826 |
\item [$OF~\vec a$] applies some theorem to given rules $\vec a$ (in |
827 |
parallel). This corresponds to the \texttt{MRS} operator in ML |
|
828 |
\cite[\S5]{isabelle-ref}, but note the reversed order. Positions may be |
|
829 |
skipped by including ``$\_$'' (underscore) as argument. |
|
830 |
\item [$of~\vec t$] performs positional instantiation. The terms $\vec t$ are |
|
8515 | 831 |
substituted for any schematic variables occurring in a theorem from left to |
832 |
right; ``\texttt{_}'' (underscore) indicates to skip a position. Arguments |
|
833 |
following a ``$concl\colon$'' specification refer to positions of the |
|
834 |
conclusion of a rule. |
|
835 |
\item [$intro$, $elim$, and $dest$] declare introduction, elimination, and |
|
836 |
destruct rules, respectively. Note that the classical reasoner (see |
|
837 |
\S\ref{sec:classical-basic}) introduces different versions of these |
|
838 |
attributes, and the $rule$ method, too. In object-logics with classical |
|
839 |
reasoning enabled, the latter version should be used all the time to avoid |
|
840 |
confusion! |
|
841 |
\item [$delrule$] undeclares introduction or elimination rules. |
|
7315 | 842 |
\end{descr} |
843 |
||
844 |
||
845 |
\subsection{Term abbreviations}\label{sec:term-abbrev} |
|
846 |
||
847 |
\indexisarcmd{let} |
|
848 |
\begin{matharray}{rcl} |
|
849 |
\isarcmd{let} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
850 |
\isarkeyword{is} & : & syntax \\ |
|
851 |
\end{matharray} |
|
852 |
||
853 |
Abbreviations may be either bound by explicit $\LET{p \equiv t}$ statements, |
|
7987 | 854 |
or by annotating assumptions or goal statements with a list of patterns |
855 |
$\ISS{p@1\;\dots}{p@n}$. In both cases, higher-order matching is invoked to |
|
856 |
bind extra-logical term variables, which may be either named schematic |
|
857 |
variables of the form $\Var{x}$, or nameless dummies ``\texttt{_}'' |
|
858 |
(underscore).\indexisarvar{_@\texttt{_}} Note that in the $\LETNAME$ form the |
|
859 |
patterns occur on the left-hand side, while the $\ISNAME$ patterns are in |
|
860 |
postfix position. |
|
7315 | 861 |
|
8620
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
862 |
Polymorphism of term bindings is handled in Hindley-Milner style, as in ML. |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
863 |
Type variables referring to local assumptions or open goal statements are |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
864 |
\emph{fixed}, while those of finished results or bound by $\LETNAME$ may occur |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
865 |
in \emph{arbitrary} instances later. Even though actual polymorphism should |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
866 |
be rarely used in practice, this mechanism is essential to achieve proper |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
867 |
incremental type-inference, as the user proceeds to build up the Isar proof |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
868 |
text. |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
869 |
|
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
870 |
\medskip |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
871 |
|
7319 | 872 |
Term abbreviations are quite different from actual local definitions as |
873 |
introduced via $\DEFNAME$ (see \S\ref{sec:proof-context}). The latter are |
|
7315 | 874 |
visible within the logic as actual equations, while abbreviations disappear |
8620
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
875 |
during the input process just after type checking. Also note that $\DEFNAME$ |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
876 |
does not support polymorphism. |
7315 | 877 |
|
878 |
\begin{rail} |
|
8664 | 879 |
'let' ((term + 'and') '=' term comment? + 'and') |
7315 | 880 |
; |
881 |
\end{rail} |
|
882 |
||
883 |
The syntax of $\ISNAME$ patterns follows \railnonterm{termpat} or |
|
884 |
\railnonterm{proppat} (see \S\ref{sec:term-pats}). |
|
885 |
||
886 |
\begin{descr} |
|
887 |
\item [$\LET{\vec p = \vec t}$] binds any text variables in patters $\vec p$ |
|
888 |
by simultaneous higher-order matching against terms $\vec t$. |
|
889 |
\item [$\IS{\vec p}$] resembles $\LETNAME$, but matches $\vec p$ against the |
|
890 |
preceding statement. Also note that $\ISNAME$ is not a separate command, |
|
891 |
but part of others (such as $\ASSUMENAME$, $\HAVENAME$ etc.). |
|
892 |
\end{descr} |
|
893 |
||
7988 | 894 |
A few \emph{automatic} term abbreviations\index{term abbreviations} for goals |
895 |
and facts are available as well. For any open goal, |
|
7466 | 896 |
$\Var{thesis_prop}$\indexisarvar{thesis-prop} refers to the full proposition |
897 |
(which may be a rule), $\Var{thesis_concl}$\indexisarvar{thesis-concl} to its |
|
898 |
(atomic) conclusion, and $\Var{thesis}$\indexisarvar{thesis} to its |
|
8547 | 899 |
object-level statement. The latter two abstract over any meta-level |
7987 | 900 |
parameters. |
7315 | 901 |
|
7466 | 902 |
Fact statements resulting from assumptions or finished goals are bound as |
903 |
$\Var{this_prop}$\indexisarvar{this-prop}, |
|
904 |
$\Var{this_concl}$\indexisarvar{this-concl}, and |
|
905 |
$\Var{this}$\indexisarvar{this}, similar to $\Var{thesis}$ above. In case |
|
906 |
$\Var{this}$ refers to an object-logic statement that is an application |
|
7895 | 907 |
$f(t)$, then $t$ is bound to the special text variable |
7466 | 908 |
``$\dots$''\indexisarvar{\dots} (three dots). The canonical application of |
7987 | 909 |
the latter are calculational proofs (see \S\ref{sec:calculation}). |
7315 | 910 |
|
911 |
||
7134 | 912 |
\subsection{Block structure} |
913 |
||
7397 | 914 |
\indexisarcmd{next}\indexisarcmd{\{\{}\indexisarcmd{\}\}} |
915 |
\begin{matharray}{rcl} |
|
8448 | 916 |
\NEXT & : & \isartrans{proof(state)}{proof(state)} \\ |
7974 | 917 |
\BG & : & \isartrans{proof(state)}{proof(state)} \\ |
918 |
\EN & : & \isartrans{proof(state)}{proof(state)} \\ |
|
7397 | 919 |
\end{matharray} |
920 |
||
7167 | 921 |
While Isar is inherently block-structured, opening and closing blocks is |
922 |
mostly handled rather casually, with little explicit user-intervention. Any |
|
923 |
local goal statement automatically opens \emph{two} blocks, which are closed |
|
924 |
again when concluding the sub-proof (by $\QEDNAME$ etc.). Sections of |
|
8448 | 925 |
different context within a sub-proof may be switched via $\NEXT$, which is |
926 |
just a single block-close followed by block-open again. Thus the effect of |
|
927 |
$\NEXT$ to reset the local proof context. There is no goal focus involved |
|
928 |
here! |
|
7167 | 929 |
|
7175 | 930 |
For slightly more advanced applications, there are explicit block parentheses |
7895 | 931 |
as well. These typically achieve a stronger forward style of reasoning. |
7167 | 932 |
|
933 |
\begin{descr} |
|
8448 | 934 |
\item [$\NEXT$] switches to a fresh block within a sub-proof, resetting the |
935 |
local context to the initial one. |
|
7167 | 936 |
\item [$\isarkeyword{\{\{}$ and $\isarkeyword{\}\}}$] explicitly open and |
7895 | 937 |
close blocks. Any current facts pass through ``$\isarkeyword{\{\{}$'' |
938 |
unchanged, while ``$\isarkeyword{\}\}}$'' causes any result to be |
|
939 |
\emph{exported} into the enclosing context. Thus fixed variables are |
|
940 |
generalized, assumptions discharged, and local definitions unfolded (cf.\ |
|
941 |
\S\ref{sec:proof-context}). There is no difference of $\ASSUMENAME$ and |
|
942 |
$\PRESUMENAME$ in this mode of forward reasoning --- in contrast to plain |
|
943 |
backward reasoning with the result exported at $\SHOWNAME$ time. |
|
7167 | 944 |
\end{descr} |
7134 | 945 |
|
946 |
||
8533 | 947 |
\subsection{Emulating tactic scripts}\label{sec:tactical-proof} |
8515 | 948 |
|
949 |
The following elements emulate unstructured tactic scripts to some extent. |
|
950 |
While these are anathema for writing proper Isar proof documents, they might |
|
951 |
come in handy for interactive exploration and debugging, or even actual |
|
952 |
tactical proof within new-style theories (to benefit from document |
|
953 |
preparation, for example). |
|
954 |
||
955 |
\indexisarcmd{apply}\indexisarcmd{apply-end} |
|
956 |
\indexisarcmd{defer}\indexisarcmd{prefer}\indexisarcmd{back} |
|
8693 | 957 |
\indexisarmeth{tactic}\indexisarmeth{insert} |
8533 | 958 |
\indexisarmeth{res-inst-tac}\indexisarmeth{eres-inst-tac} |
959 |
\indexisarmeth{dres-inst-tac}\indexisarmeth{forw-inst-tac} |
|
960 |
\indexisarmeth{subgoal-tac} |
|
8515 | 961 |
\begin{matharray}{rcl} |
8533 | 962 |
\isarcmd{apply}^* & : & \isartrans{proof(prove)}{proof(prove)} \\ |
963 |
\isarcmd{apply_end}^* & : & \isartrans{proof(state)}{proof(state)} \\ |
|
964 |
\isarcmd{defer}^* & : & \isartrans{proof}{proof} \\ |
|
965 |
\isarcmd{prefer}^* & : & \isartrans{proof}{proof} \\ |
|
966 |
\isarcmd{back}^* & : & \isartrans{proof}{proof} \\ |
|
967 |
tactic^* & : & \isarmeth \\ |
|
8693 | 968 |
insert^* & : & \isarmeth \\ |
8533 | 969 |
res_inst_tac^* & : & \isarmeth \\ |
970 |
eres_inst_tac^* & : & \isarmeth \\ |
|
971 |
dres_inst_tac^* & : & \isarmeth \\ |
|
972 |
forw_inst_tac^* & : & \isarmeth \\ |
|
973 |
subgoal_tac^* & : & \isarmeth \\ |
|
8515 | 974 |
\end{matharray} |
975 |
||
976 |
\railalias{applyend}{apply\_end} |
|
977 |
\railterm{applyend} |
|
978 |
||
8533 | 979 |
\railalias{resinsttac}{res\_inst\_tac} |
980 |
\railterm{resinsttac} |
|
981 |
||
982 |
\railalias{eresinsttac}{eres\_inst\_tac} |
|
983 |
\railterm{eresinsttac} |
|
984 |
||
985 |
\railalias{dresinsttac}{dres\_inst\_tac} |
|
986 |
\railterm{dresinsttac} |
|
987 |
||
988 |
\railalias{forwinsttac}{forw\_inst\_tac} |
|
989 |
\railterm{forwinsttac} |
|
990 |
||
991 |
\railalias{subgoaltac}{subgoal\_tac} |
|
992 |
\railterm{subgoaltac} |
|
993 |
||
8515 | 994 |
\begin{rail} |
8682 | 995 |
'apply' method comment? |
8515 | 996 |
; |
8682 | 997 |
applyend method comment? |
8515 | 998 |
; |
8682 | 999 |
'defer' nat? comment? |
8515 | 1000 |
; |
8682 | 1001 |
'prefer' nat comment? |
8515 | 1002 |
; |
1003 |
'tactic' text |
|
1004 |
; |
|
8693 | 1005 |
'insert' thmrefs |
1006 |
; |
|
8533 | 1007 |
( resinsttac | eresinsttac | dresinsttac | forwinsttac ) goalspec? ((name '=' term) + 'and') |
1008 |
; |
|
1009 |
subgoaltac goalspec? prop |
|
1010 |
; |
|
8515 | 1011 |
\end{rail} |
1012 |
||
1013 |
\begin{descr} |
|
8547 | 1014 |
\item [$\isarkeyword{apply}~(m)$] applies proof method $m$ in initial |
1015 |
position, but unlike $\PROOFNAME$ it retains ``$proof(prove)$'' mode. Thus |
|
8515 | 1016 |
consecutive method applications may be given just as in tactic scripts. In |
1017 |
order to complete the proof properly, any of the actual structured proof |
|
1018 |
commands (e.g.\ ``$\DOT$'') has to be given eventually. |
|
1019 |
||
8881 | 1020 |
Facts are passed to $m$ as indicated by the goal's forward-chain mode, and |
1021 |
are \emph{consumed} afterwards. Thus any further $\isarkeyword{apply}$ |
|
1022 |
command would always work in a purely backward manner. |
|
1023 |
||
8515 | 1024 |
\item [$\isarkeyword{apply_end}~(m)$] applies proof method $m$ as if in |
1025 |
terminal position. Basically, this simulates a multi-step tactic script for |
|
1026 |
$\QEDNAME$, but may be given anywhere within the proof body. |
|
1027 |
||
1028 |
No facts are passed to $m$. Furthermore, the static context is that of the |
|
1029 |
enclosing goal (as for actual $\QEDNAME$). Thus the proof method may not |
|
1030 |
refer to any assumptions introduced in the current body, for example. |
|
1031 |
\item [$\isarkeyword{defer}~n$ and $\isarkeyword{prefer}~n$] shuffle the list |
|
1032 |
of pending goals: $defer$ puts off goal $n$ to the end of the list ($n = 1$ |
|
1033 |
by default), while $prefer$ brings goal $n$ to the top. |
|
1034 |
\item [$\isarkeyword{back}$] does back-tracking over the result sequence of |
|
1035 |
the latest proof command.\footnote{Unlike the ML function \texttt{back} |
|
1036 |
\cite{isabelle-ref}, the Isar command does not search upwards for further |
|
1037 |
branch points.} Basically, any proof command may return multiple results. |
|
1038 |
\item [$tactic~text$] produces a proof method from any ML text of type |
|
8547 | 1039 |
\texttt{tactic}. Apart from the usual ML environment and the current |
8515 | 1040 |
implicit theory context, the ML code may refer to the following locally |
1041 |
bound values: |
|
1042 |
%%FIXME ttbox produces too much trailing space (why?) |
|
1043 |
{\footnotesize\begin{verbatim} |
|
1044 |
val ctxt : Proof.context |
|
1045 |
val facts : thm list |
|
1046 |
val thm : string -> thm |
|
1047 |
val thms : string -> thm list |
|
1048 |
\end{verbatim}} |
|
1049 |
Here \texttt{ctxt} refers to the current proof context, \texttt{facts} |
|
1050 |
indicates any current facts for forward-chaining, and |
|
1051 |
\texttt{thm}~/~\texttt{thms} retrieve named facts (including global |
|
1052 |
theorems) from the context. |
|
8696 | 1053 |
\item [$insert~\vec a$] inserts theorems as facts into all goals of the proof |
1054 |
state; the current facts indicated for forward chaining are ignored! |
|
8533 | 1055 |
\item [$res_inst_tac$ etc.] do resolution of rules with explicit |
1056 |
instantiation. This works the same way as the corresponding ML tactics, see |
|
1057 |
\cite[\S3]{isabelle-ref}. |
|
1058 |
||
1059 |
It is very important to note that the instantiations are read and |
|
1060 |
type-checked according to the dynamic goal state, rather than the static |
|
1061 |
proof context! In particular, locally fixed variables and term |
|
1062 |
abbreviations may not be included in the term specifications. |
|
8547 | 1063 |
\item [$subgoal_tac~\phi$] emulates the ML tactic of the same name, see |
8533 | 1064 |
\cite[\S3]{isabelle-ref}. Syntactically, the given proposition is handled |
1065 |
as the instantiations in $res_inst_tac$ etc. |
|
1066 |
||
1067 |
Note that the proper Isar command $\PRESUMENAME$ achieves a similar effect |
|
1068 |
as $subgoal_tac$. |
|
8515 | 1069 |
\end{descr} |
1070 |
||
1071 |
||
1072 |
\subsection{Meta-linguistic features} |
|
1073 |
||
1074 |
\indexisarcmd{oops} |
|
1075 |
\begin{matharray}{rcl} |
|
1076 |
\isarcmd{oops} & : & \isartrans{proof}{theory} \\ |
|
1077 |
\end{matharray} |
|
1078 |
||
1079 |
The $\OOPS$ command discontinues the current proof attempt, while considering |
|
1080 |
the partial proof text as properly processed. This is conceptually quite |
|
1081 |
different from ``faking'' actual proofs via $\SORRY$ (see |
|
1082 |
\S\ref{sec:proof-steps}): $\OOPS$ does not observe the proof structure at all, |
|
1083 |
but goes back right to the theory level. Furthermore, $\OOPS$ does not |
|
1084 |
produce any result theorem --- there is no claim to be able to complete the |
|
1085 |
proof anyhow. |
|
1086 |
||
1087 |
A typical application of $\OOPS$ is to explain Isar proofs \emph{within} the |
|
1088 |
system itself, in conjunction with the document preparation tools of Isabelle |
|
1089 |
described in \cite{isabelle-sys}. Thus partial or even wrong proof attempts |
|
1090 |
can be discussed in a logically sound manner. Note that the Isabelle {\LaTeX} |
|
1091 |
macros can be easily adapted to print something like ``$\dots$'' instead of an |
|
1092 |
``$\OOPS$'' keyword. |
|
1093 |
||
8547 | 1094 |
\medskip The $\OOPS$ command is undoable, unlike $\isarkeyword{kill}$ (see |
1095 |
\S\ref{sec:history}). The effect is to get back to the theory \emph{before} |
|
1096 |
the opening of the proof. |
|
8515 | 1097 |
|
1098 |
||
7134 | 1099 |
\section{Other commands} |
1100 |
||
8448 | 1101 |
\subsection{Diagnostics}\label{sec:diag} |
7134 | 1102 |
|
8485 | 1103 |
\indexisarcmd{pr}\indexisarcmd{thm}\indexisarcmd{term}\indexisarcmd{prop}\indexisarcmd{typ} |
1104 |
\indexisarcmd{print-facts}\indexisarcmd{print-binds} |
|
7134 | 1105 |
\begin{matharray}{rcl} |
8515 | 1106 |
\isarcmd{help}^* & : & \isarkeep{\cdot} \\ |
1107 |
\isarcmd{pr}^* & : & \isarkeep{\cdot} \\ |
|
1108 |
\isarcmd{thm}^* & : & \isarkeep{theory~|~proof} \\ |
|
1109 |
\isarcmd{term}^* & : & \isarkeep{theory~|~proof} \\ |
|
1110 |
\isarcmd{prop}^* & : & \isarkeep{theory~|~proof} \\ |
|
1111 |
\isarcmd{typ}^* & : & \isarkeep{theory~|~proof} \\ |
|
1112 |
\isarcmd{print_facts}^* & : & \isarkeep{proof} \\ |
|
1113 |
\isarcmd{print_binds}^* & : & \isarkeep{proof} \\ |
|
7134 | 1114 |
\end{matharray} |
1115 |
||
7335 | 1116 |
These commands are not part of the actual Isabelle/Isar syntax, but assist |
1117 |
interactive development. Also note that $undo$ does not apply here, since the |
|
1118 |
theory or proof configuration is not changed. |
|
1119 |
||
7134 | 1120 |
\begin{rail} |
8485 | 1121 |
'pr' modes? nat? |
7134 | 1122 |
; |
8485 | 1123 |
'thm' modes? thmrefs |
1124 |
; |
|
1125 |
'term' modes? term |
|
7134 | 1126 |
; |
8485 | 1127 |
'prop' modes? prop |
7134 | 1128 |
; |
8485 | 1129 |
'typ' modes? type |
1130 |
; |
|
1131 |
||
1132 |
modes: '(' (name + ) ')' |
|
7134 | 1133 |
; |
1134 |
\end{rail} |
|
1135 |
||
7167 | 1136 |
\begin{descr} |
8515 | 1137 |
\item [$\isarkeyword{help}$] prints a list of available language elements. |
1138 |
Note that methods and attributes depend on the current theory context. |
|
8883 | 1139 |
\item [$\isarkeyword{pr}~n$] prints the current proof state (if present), |
1140 |
including the proof context, current facts and goals. The optional argument |
|
1141 |
$n$ affects the implicit limit of goals to be displayed, which is initially |
|
1142 |
10. Omitting the limit leaves the current value unchanged. |
|
8547 | 1143 |
\item [$\isarkeyword{thm}~\vec a$] retrieves theorems from the current theory |
1144 |
or proof context. Note that any attributes included in the theorem |
|
7974 | 1145 |
specifications are applied to a temporary context derived from the current |
8547 | 1146 |
theory or proof; the result is discarded, i.e.\ attributes involved in $\vec |
1147 |
a$ do not have any permanent effect. |
|
7987 | 1148 |
\item [$\isarkeyword{term}~t$, $\isarkeyword{prop}~\phi$] read, type-check and |
1149 |
print terms or propositions according to the current theory or proof |
|
7895 | 1150 |
context; the inferred type of $t$ is output as well. Note that these |
1151 |
commands are also useful in inspecting the current environment of term |
|
1152 |
abbreviations. |
|
7974 | 1153 |
\item [$\isarkeyword{typ}~\tau$] reads and prints types of the meta-logic |
1154 |
according to the current theory or proof context. |
|
8379 | 1155 |
\item [$\isarkeyword{print_facts}$] prints any named facts of the current |
1156 |
context, including assumptions and local results. |
|
1157 |
\item [$\isarkeyword{print_binds}$] prints all term abbreviations present in |
|
1158 |
the context. |
|
8485 | 1159 |
\end{descr} |
1160 |
||
1161 |
The basic diagnostic commands above admit a list of $modes$ to be specified, |
|
1162 |
which is appended to the current print mode (see also \cite{isabelle-ref}). |
|
1163 |
Thus the output behavior may be modified according particular print mode |
|
1164 |
features. |
|
1165 |
||
1166 |
For example, $\isarkeyword{pr}~(latex~xsymbols~symbols)$ would print the |
|
1167 |
current proof state with mathematical symbols and special characters |
|
1168 |
represented in {\LaTeX} source, according to the Isabelle style |
|
8547 | 1169 |
\cite{isabelle-sys}. The resulting text can be directly pasted into a |
1170 |
\verb,\begin{isabelle},\dots\verb,\end{isabelle}, environment. Note that |
|
1171 |
$\isarkeyword{pr}~(latex)$ is sufficient to achieve the same output, if the |
|
1172 |
current Isabelle session has the other modes already activated, say due to |
|
1173 |
some particular user interface configuration such as Proof~General |
|
8510 | 1174 |
\cite{proofgeneral,Aspinall:TACAS:2000} with X-Symbol mode \cite{x-symbol}. |
8485 | 1175 |
|
1176 |
||
1177 |
\subsection{History commands}\label{sec:history} |
|
1178 |
||
1179 |
\indexisarcmd{undo}\indexisarcmd{redo}\indexisarcmd{kill} |
|
1180 |
\begin{matharray}{rcl} |
|
1181 |
\isarcmd{undo}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1182 |
\isarcmd{redo}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1183 |
\isarcmd{kill}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1184 |
\end{matharray} |
|
1185 |
||
1186 |
The Isabelle/Isar top-level maintains a two-stage history, for theory and |
|
1187 |
proof state transformation. Basically, any command can be undone using |
|
1188 |
$\isarkeyword{undo}$, excluding mere diagnostic elements. Its effect may be |
|
1189 |
revoked via $\isarkeyword{redo}$, unless the corresponding the |
|
1190 |
$\isarkeyword{undo}$ step has crossed the beginning of a proof or theory. The |
|
1191 |
$\isarkeyword{kill}$ command aborts the current history node altogether, |
|
1192 |
discontinuing a proof or even the whole theory. This operation is \emph{not} |
|
1193 |
undoable. |
|
1194 |
||
1195 |
\begin{warn} |
|
8547 | 1196 |
History commands should never be used with user interfaces such as |
1197 |
Proof~General \cite{proofgeneral,Aspinall:TACAS:2000}, which takes care of |
|
1198 |
stepping forth and back itself. Interfering by manual $\isarkeyword{undo}$, |
|
8510 | 1199 |
$\isarkeyword{redo}$, or even $\isarkeyword{kill}$ commands would quickly |
1200 |
result in utter confusion. |
|
8485 | 1201 |
\end{warn} |
1202 |
||
8515 | 1203 |
%FIXME remove |
1204 |
% \begin{descr} |
|
1205 |
% \item [$\isarkeyword{undo}$] revokes the latest state-transforming command. |
|
1206 |
% \item [$\isarkeyword{redo}$] undos the latest $\isarkeyword{undo}$. |
|
1207 |
% \item [$\isarkeyword{kill}$] aborts the current history level. |
|
1208 |
% \end{descr} |
|
8485 | 1209 |
|
8379 | 1210 |
|
7134 | 1211 |
\subsection{System operations} |
1212 |
||
7167 | 1213 |
\indexisarcmd{cd}\indexisarcmd{pwd}\indexisarcmd{use-thy}\indexisarcmd{use-thy-only} |
1214 |
\indexisarcmd{update-thy}\indexisarcmd{update-thy-only} |
|
7134 | 1215 |
\begin{matharray}{rcl} |
8515 | 1216 |
\isarcmd{cd}^* & : & \isarkeep{\cdot} \\ |
1217 |
\isarcmd{pwd}^* & : & \isarkeep{\cdot} \\ |
|
1218 |
\isarcmd{use_thy}^* & : & \isarkeep{\cdot} \\ |
|
1219 |
\isarcmd{use_thy_only}^* & : & \isarkeep{\cdot} \\ |
|
1220 |
\isarcmd{update_thy}^* & : & \isarkeep{\cdot} \\ |
|
1221 |
\isarcmd{update_thy_only}^* & : & \isarkeep{\cdot} \\ |
|
7134 | 1222 |
\end{matharray} |
1223 |
||
7167 | 1224 |
\begin{descr} |
7134 | 1225 |
\item [$\isarkeyword{cd}~name$] changes the current directory of the Isabelle |
1226 |
process. |
|
1227 |
\item [$\isarkeyword{pwd}~$] prints the current working directory. |
|
7175 | 1228 |
\item [$\isarkeyword{use_thy}$, $\isarkeyword{use_thy_only}$, |
7987 | 1229 |
$\isarkeyword{update_thy}$, $\isarkeyword{update_thy_only}$] load some |
7895 | 1230 |
theory given as $name$ argument. These commands are basically the same as |
7987 | 1231 |
the corresponding ML functions\footnote{The ML versions also change the |
1232 |
implicit theory context to that of the theory loaded.} (see also |
|
1233 |
\cite[\S1,\S6]{isabelle-ref}). Note that both the ML and Isar versions may |
|
1234 |
load new- and old-style theories alike. |
|
7167 | 1235 |
\end{descr} |
7134 | 1236 |
|
7987 | 1237 |
These system commands are scarcely used when working with the Proof~General |
1238 |
interface, since loading of theories is done fully transparently. |
|
7134 | 1239 |
|
8379 | 1240 |
|
7046 | 1241 |
%%% Local Variables: |
1242 |
%%% mode: latex |
|
1243 |
%%% TeX-master: "isar-ref" |
|
1244 |
%%% End: |