author | wenzelm |
Wed, 02 Jan 2002 21:53:50 +0100 | |
changeset 12618 | 43a97a2155d0 |
parent 11549 | e7265e70fd7c |
child 12621 | 48cafea0684b |
permissions | -rw-r--r-- |
7046 | 1 |
|
12618 | 2 |
\chapter{Basic 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 |
|
12618 | 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 |
|
12618 | 23 |
\section{Theory specification commands} |
7134 | 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 |
12618 | 122 |
formal entities (see also \S\ref{sec:antiq} on ``antiquotations''). |
7895 | 123 |
\item [$\isarkeyword{text_raw}$] inserts {\LaTeX} source into the output, |
124 |
without additional markup. Thus the full range of document manipulations |
|
12618 | 125 |
becomes available. |
7167 | 126 |
\end{descr} |
7134 | 127 |
|
8684 | 128 |
Any of these markup elements corresponds to a {\LaTeX} command with the name |
129 |
prefixed by \verb,\isamarkup,. For the sectioning commands this is a plain |
|
130 |
macro with a single argument, e.g.\ \verb,\isamarkupchapter{,\dots\verb,}, for |
|
131 |
$\isarkeyword{chapter}$. The $\isarkeyword{text}$ markup results in a |
|
132 |
{\LaTeX} environment \verb,\begin{isamarkuptext}, {\dots} |
|
133 |
\verb,\end{isamarkuptext},, while $\isarkeyword{text_raw}$ causes the text |
|
134 |
to be inserted directly into the {\LaTeX} source. |
|
7895 | 135 |
|
8485 | 136 |
\medskip |
137 |
||
138 |
Additional markup commands are available for proofs (see |
|
7895 | 139 |
\S\ref{sec:markup-prf}). Also note that the $\isarkeyword{header}$ |
8684 | 140 |
declaration (see \S\ref{sec:begin-thy}) admits to insert section markup just |
141 |
preceding the actual theory definition. |
|
7895 | 142 |
|
7134 | 143 |
|
7135 | 144 |
\subsection{Type classes and sorts}\label{sec:classes} |
7134 | 145 |
|
146 |
\indexisarcmd{classes}\indexisarcmd{classrel}\indexisarcmd{defaultsort} |
|
147 |
\begin{matharray}{rcl} |
|
148 |
\isarcmd{classes} & : & \isartrans{theory}{theory} \\ |
|
149 |
\isarcmd{classrel} & : & \isartrans{theory}{theory} \\ |
|
150 |
\isarcmd{defaultsort} & : & \isartrans{theory}{theory} \\ |
|
151 |
\end{matharray} |
|
152 |
||
153 |
\begin{rail} |
|
7167 | 154 |
'classes' (classdecl comment? +) |
7134 | 155 |
; |
11100
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
156 |
'classrel' nameref ('<' | subseteq) nameref comment? |
7134 | 157 |
; |
158 |
'defaultsort' sort comment? |
|
159 |
; |
|
160 |
\end{rail} |
|
161 |
||
7167 | 162 |
\begin{descr} |
11100
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
163 |
\item [$\isarkeyword{classes}~c \subseteq \vec c$] declares class $c$ to be a |
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
164 |
subclass of existing classes $\vec c$. Cyclic class structures are ruled |
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
165 |
out. |
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
166 |
\item [$\isarkeyword{classrel}~c@1 \subseteq c@2$] states a subclass relation |
34d58b1818f4
\<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents:
11017
diff
changeset
|
167 |
between existing classes $c@1$ and $c@2$. This is done axiomatically! The |
10223 | 168 |
$\INSTANCE$ command (see \S\ref{sec:axclass}) provides a way to introduce |
169 |
proven class relations. |
|
7134 | 170 |
\item [$\isarkeyword{defaultsort}~s$] makes sort $s$ the new default sort for |
7895 | 171 |
any type variables given without sort constraints. Usually, the default |
8547 | 172 |
sort would be only changed when defining new object-logics. |
7167 | 173 |
\end{descr} |
7134 | 174 |
|
175 |
||
7315 | 176 |
\subsection{Primitive types and type abbreviations}\label{sec:types-pure} |
7134 | 177 |
|
178 |
\indexisarcmd{typedecl}\indexisarcmd{types}\indexisarcmd{nonterminals}\indexisarcmd{arities} |
|
179 |
\begin{matharray}{rcl} |
|
180 |
\isarcmd{types} & : & \isartrans{theory}{theory} \\ |
|
181 |
\isarcmd{typedecl} & : & \isartrans{theory}{theory} \\ |
|
182 |
\isarcmd{nonterminals} & : & \isartrans{theory}{theory} \\ |
|
183 |
\isarcmd{arities} & : & \isartrans{theory}{theory} \\ |
|
184 |
\end{matharray} |
|
185 |
||
186 |
\begin{rail} |
|
187 |
'types' (typespec '=' type infix? comment? +) |
|
188 |
; |
|
189 |
'typedecl' typespec infix? comment? |
|
190 |
; |
|
191 |
'nonterminals' (name +) comment? |
|
192 |
; |
|
193 |
'arities' (nameref '::' arity comment? +) |
|
194 |
; |
|
195 |
\end{rail} |
|
196 |
||
7167 | 197 |
\begin{descr} |
7335 | 198 |
\item [$\TYPES~(\vec\alpha)t = \tau$] introduces \emph{type synonym} |
7134 | 199 |
$(\vec\alpha)t$ for existing type $\tau$. Unlike actual type definitions, |
200 |
as are available in Isabelle/HOL for example, type synonyms are just purely |
|
7895 | 201 |
syntactic abbreviations without any logical significance. Internally, type |
7981 | 202 |
synonyms are fully expanded. |
7134 | 203 |
\item [$\isarkeyword{typedecl}~(\vec\alpha)t$] declares a new type constructor |
7895 | 204 |
$t$, intended as an actual logical type. Note that object-logics such as |
205 |
Isabelle/HOL override $\isarkeyword{typedecl}$ by their own version. |
|
7175 | 206 |
\item [$\isarkeyword{nonterminals}~\vec c$] declares $0$-ary type constructors |
207 |
$\vec c$ to act as purely syntactic types, i.e.\ nonterminal symbols of |
|
208 |
Isabelle's inner syntax of terms or types. |
|
7335 | 209 |
\item [$\isarkeyword{arities}~t::(\vec s)s$] augments Isabelle's order-sorted |
210 |
signature of types by new type constructor arities. This is done |
|
10223 | 211 |
axiomatically! The $\INSTANCE$ command (see \S\ref{sec:axclass}) provides a |
212 |
way to introduce proven type arities. |
|
7167 | 213 |
\end{descr} |
7134 | 214 |
|
215 |
||
7981 | 216 |
\subsection{Constants and simple definitions}\label{sec:consts} |
7134 | 217 |
|
7175 | 218 |
\indexisarcmd{consts}\indexisarcmd{defs}\indexisarcmd{constdefs}\indexoutertoken{constdecl} |
7134 | 219 |
\begin{matharray}{rcl} |
220 |
\isarcmd{consts} & : & \isartrans{theory}{theory} \\ |
|
221 |
\isarcmd{defs} & : & \isartrans{theory}{theory} \\ |
|
222 |
\isarcmd{constdefs} & : & \isartrans{theory}{theory} \\ |
|
223 |
\end{matharray} |
|
224 |
||
225 |
\begin{rail} |
|
226 |
'consts' (constdecl +) |
|
227 |
; |
|
9308 | 228 |
'defs' ('(overloaded)')? (axmdecl prop comment? +) |
7134 | 229 |
; |
230 |
'constdefs' (constdecl prop comment? +) |
|
231 |
; |
|
232 |
||
233 |
constdecl: name '::' type mixfix? comment? |
|
234 |
; |
|
235 |
\end{rail} |
|
236 |
||
7167 | 237 |
\begin{descr} |
7335 | 238 |
\item [$\CONSTS~c::\sigma$] declares constant $c$ to have any instance of type |
239 |
scheme $\sigma$. The optional mixfix annotations may attach concrete syntax |
|
7895 | 240 |
to the constants declared. |
9308 | 241 |
|
7335 | 242 |
\item [$\DEFS~name: eqn$] introduces $eqn$ as a definitional axiom for some |
243 |
existing constant. See \cite[\S6]{isabelle-ref} for more details on the |
|
244 |
form of equations admitted as constant definitions. |
|
9308 | 245 |
|
246 |
The $overloaded$ option declares definitions to be potentially overloaded. |
|
247 |
Unless this option is given, a warning message would be issued for any |
|
248 |
definitional equation with a more special type than that of the |
|
249 |
corresponding constant declaration. |
|
250 |
||
7335 | 251 |
\item [$\isarkeyword{constdefs}~c::\sigma~eqn$] combines declarations and |
8547 | 252 |
definitions of constants, using the canonical name $c_def$ for the |
253 |
definitional axiom. |
|
7167 | 254 |
\end{descr} |
7134 | 255 |
|
256 |
||
7981 | 257 |
\subsection{Syntax and translations}\label{sec:syn-trans} |
7134 | 258 |
|
259 |
\indexisarcmd{syntax}\indexisarcmd{translations} |
|
260 |
\begin{matharray}{rcl} |
|
261 |
\isarcmd{syntax} & : & \isartrans{theory}{theory} \\ |
|
262 |
\isarcmd{translations} & : & \isartrans{theory}{theory} \\ |
|
263 |
\end{matharray} |
|
264 |
||
10640 | 265 |
\railalias{rightleftharpoons}{\isasymrightleftharpoons} |
266 |
\railterm{rightleftharpoons} |
|
267 |
||
268 |
\railalias{rightharpoonup}{\isasymrightharpoonup} |
|
269 |
\railterm{rightharpoonup} |
|
270 |
||
271 |
\railalias{leftharpoondown}{\isasymleftharpoondown} |
|
272 |
\railterm{leftharpoondown} |
|
273 |
||
7134 | 274 |
\begin{rail} |
9727 | 275 |
'syntax' ('(' ( name | 'output' | name 'output' ) ')')? (constdecl +) |
7134 | 276 |
; |
10640 | 277 |
'translations' (transpat ('==' | '=>' | '<=' | rightleftharpoons | rightharpoonup | leftharpoondown) transpat comment? +) |
7134 | 278 |
; |
279 |
transpat: ('(' nameref ')')? string |
|
280 |
; |
|
281 |
\end{rail} |
|
282 |
||
7167 | 283 |
\begin{descr} |
7175 | 284 |
\item [$\isarkeyword{syntax}~(mode)~decls$] is similar to $\CONSTS~decls$, |
285 |
except that the actual logical signature extension is omitted. Thus the |
|
286 |
context free grammar of Isabelle's inner syntax may be augmented in |
|
7335 | 287 |
arbitrary ways, independently of the logic. The $mode$ argument refers to |
8547 | 288 |
the print mode that the grammar rules belong; unless the \texttt{output} |
289 |
flag is given, all productions are added both to the input and output |
|
290 |
grammar. |
|
7175 | 291 |
\item [$\isarkeyword{translations}~rules$] specifies syntactic translation |
10640 | 292 |
rules (i.e.\ \emph{macros}): parse~/ print rules (\texttt{==} or |
293 |
\isasymrightleftharpoons), parse rules (\texttt{=>} or |
|
294 |
\isasymrightharpoonup), or print rules (\texttt{<=} or |
|
295 |
\isasymleftharpoondown). Translation patterns may be prefixed by the |
|
296 |
syntactic category to be used for parsing; the default is \texttt{logic}. |
|
7167 | 297 |
\end{descr} |
7134 | 298 |
|
299 |
||
9605 | 300 |
\subsection{Axioms and theorems}\label{sec:axms-thms} |
7134 | 301 |
|
12618 | 302 |
\indexisarcmd{axioms}\indexisarcmd{lemmas}\indexisarcmd{theorems} |
7134 | 303 |
\begin{matharray}{rcl} |
304 |
\isarcmd{axioms} & : & \isartrans{theory}{theory} \\ |
|
12618 | 305 |
\isarcmd{lemmas} & : & \isartrans{theory}{theory} \\ |
7134 | 306 |
\isarcmd{theorems} & : & \isartrans{theory}{theory} \\ |
307 |
\end{matharray} |
|
308 |
||
309 |
\begin{rail} |
|
7135 | 310 |
'axioms' (axmdecl prop comment? +) |
7134 | 311 |
; |
12618 | 312 |
('lemmas' | 'theorems') (thmdef? thmrefs comment? + 'and') |
7134 | 313 |
; |
314 |
\end{rail} |
|
315 |
||
7167 | 316 |
\begin{descr} |
7335 | 317 |
\item [$\isarkeyword{axioms}~a: \phi$] introduces arbitrary statements as |
7895 | 318 |
axioms of the meta-logic. In fact, axioms are ``axiomatic theorems'', and |
319 |
may be referred later just as any other theorem. |
|
7134 | 320 |
|
321 |
Axioms are usually only introduced when declaring new logical systems. |
|
7175 | 322 |
Everyday work is typically done the hard way, with proper definitions and |
8547 | 323 |
actual proven theorems. |
12618 | 324 |
\item [$\isarkeyword{lemmas}~a = \vec b$] stores existing facts. Typical |
325 |
applications would also involve attributes, to declare Simplifier rules, for |
|
326 |
example. |
|
327 |
\item [$\isarkeyword{theorems}$] is essentially the same as |
|
328 |
$\isarkeyword{lemmas}$, but marks the result as a different kind of facts. |
|
7167 | 329 |
\end{descr} |
7134 | 330 |
|
331 |
||
7167 | 332 |
\subsection{Name spaces} |
7134 | 333 |
|
8726 | 334 |
\indexisarcmd{global}\indexisarcmd{local}\indexisarcmd{hide} |
7134 | 335 |
\begin{matharray}{rcl} |
336 |
\isarcmd{global} & : & \isartrans{theory}{theory} \\ |
|
337 |
\isarcmd{local} & : & \isartrans{theory}{theory} \\ |
|
8726 | 338 |
\isarcmd{hide} & : & \isartrans{theory}{theory} \\ |
7134 | 339 |
\end{matharray} |
340 |
||
8726 | 341 |
\begin{rail} |
342 |
'global' comment? |
|
343 |
; |
|
344 |
'local' comment? |
|
345 |
; |
|
346 |
'hide' name (nameref + ) comment? |
|
347 |
; |
|
348 |
\end{rail} |
|
349 |
||
7895 | 350 |
Isabelle organizes any kind of name declarations (of types, constants, |
8547 | 351 |
theorems etc.) by separate hierarchically structured name spaces. Normally |
8726 | 352 |
the user does not have to control the behavior of name spaces by hand, yet the |
353 |
following commands provide some way to do so. |
|
7175 | 354 |
|
7167 | 355 |
\begin{descr} |
356 |
\item [$\isarkeyword{global}$ and $\isarkeyword{local}$] change the current |
|
357 |
name declaration mode. Initially, theories start in $\isarkeyword{local}$ |
|
358 |
mode, causing all names to be automatically qualified by the theory name. |
|
7895 | 359 |
Changing this to $\isarkeyword{global}$ causes all names to be declared |
360 |
without the theory prefix, until $\isarkeyword{local}$ is declared again. |
|
8726 | 361 |
|
362 |
Note that global names are prone to get hidden accidently later, when |
|
363 |
qualified names of the same base name are introduced. |
|
364 |
||
365 |
\item [$\isarkeyword{hide}~space~names$] removes declarations from a given |
|
366 |
name space (which may be $class$, $type$, or $const$). Hidden objects |
|
367 |
remain valid within the logic, but are inaccessible from user input. In |
|
368 |
output, the special qualifier ``$\mathord?\mathord?$'' is prefixed to the |
|
369 |
full internal name. |
|
370 |
||
371 |
Unqualified (global) names may not be hidden deliberately. |
|
7167 | 372 |
\end{descr} |
7134 | 373 |
|
374 |
||
7167 | 375 |
\subsection{Incorporating ML code}\label{sec:ML} |
7134 | 376 |
|
8682 | 377 |
\indexisarcmd{use}\indexisarcmd{ML}\indexisarcmd{ML-command} |
378 |
\indexisarcmd{ML-setup}\indexisarcmd{setup} |
|
9199 | 379 |
\indexisarcmd{method-setup} |
7134 | 380 |
\begin{matharray}{rcl} |
381 |
\isarcmd{use} & : & \isartrans{\cdot}{\cdot} \\ |
|
382 |
\isarcmd{ML} & : & \isartrans{\cdot}{\cdot} \\ |
|
8682 | 383 |
\isarcmd{ML_command} & : & \isartrans{\cdot}{\cdot} \\ |
7895 | 384 |
\isarcmd{ML_setup} & : & \isartrans{theory}{theory} \\ |
7175 | 385 |
\isarcmd{setup} & : & \isartrans{theory}{theory} \\ |
9199 | 386 |
\isarcmd{method_setup} & : & \isartrans{theory}{theory} \\ |
7134 | 387 |
\end{matharray} |
388 |
||
7895 | 389 |
\railalias{MLsetup}{ML\_setup} |
390 |
\railterm{MLsetup} |
|
391 |
||
9199 | 392 |
\railalias{methodsetup}{method\_setup} |
393 |
\railterm{methodsetup} |
|
394 |
||
8682 | 395 |
\railalias{MLcommand}{ML\_command} |
396 |
\railterm{MLcommand} |
|
397 |
||
7134 | 398 |
\begin{rail} |
9273 | 399 |
'use' name comment? |
7134 | 400 |
; |
9273 | 401 |
('ML' | MLcommand | MLsetup | 'setup') text comment? |
7134 | 402 |
; |
9199 | 403 |
methodsetup name '=' text text comment? |
404 |
; |
|
7134 | 405 |
\end{rail} |
406 |
||
7167 | 407 |
\begin{descr} |
7175 | 408 |
\item [$\isarkeyword{use}~file$] reads and executes ML commands from $file$. |
7466 | 409 |
The current theory context (if present) is passed down to the ML session, |
7981 | 410 |
but may not be modified. Furthermore, the file name is checked with the |
7466 | 411 |
$\isarkeyword{files}$ dependency declaration given in the theory header (see |
412 |
also \S\ref{sec:begin-thy}). |
|
413 |
||
8682 | 414 |
\item [$\isarkeyword{ML}~text$ and $\isarkeyword{ML_command}~text$] execute ML |
415 |
commands from $text$. The theory context is passed in the same way as for |
|
10858 | 416 |
$\isarkeyword{use}$, but may not be changed. Note that the output of |
8682 | 417 |
$\isarkeyword{ML_command}$ is less verbose than plain $\isarkeyword{ML}$. |
7895 | 418 |
|
419 |
\item [$\isarkeyword{ML_setup}~text$] executes ML commands from $text$. The |
|
420 |
theory context is passed down to the ML session, and fetched back |
|
421 |
afterwards. Thus $text$ may actually change the theory as a side effect. |
|
422 |
||
7167 | 423 |
\item [$\isarkeyword{setup}~text$] changes the current theory context by |
8379 | 424 |
applying $text$, which refers to an ML expression of type |
425 |
\texttt{(theory~->~theory)~list}. The $\isarkeyword{setup}$ command is the |
|
8547 | 426 |
canonical way to initialize any object-logic specific tools and packages |
427 |
written in ML. |
|
9199 | 428 |
|
429 |
\item [$\isarkeyword{method_setup}~name = text~description$] defines a proof |
|
430 |
method in the current theory. The given $text$ has to be an ML expression |
|
431 |
of type \texttt{Args.src -> Proof.context -> Proof.method}. Parsing |
|
432 |
concrete method syntax from \texttt{Args.src} input can be quite tedious in |
|
433 |
general. The following simple examples are for methods without any explicit |
|
434 |
arguments, or a list of theorems, respectively. |
|
435 |
||
436 |
{\footnotesize |
|
437 |
\begin{verbatim} |
|
9605 | 438 |
Method.no_args (Method.METHOD (fn facts => foobar_tac)) |
439 |
Method.thms_args (fn thms => Method.METHOD (fn facts => foobar_tac)) |
|
10899 | 440 |
Method.ctxt_args (fn ctxt => Method.METHOD (fn facts => foobar_tac)) |
12618 | 441 |
Method.thms_ctxt_args (fn thms => fn ctxt => |
442 |
Method.METHOD (fn facts => foobar_tac)) |
|
9199 | 443 |
\end{verbatim} |
444 |
} |
|
445 |
||
446 |
Note that mere tactic emulations may ignore the \texttt{facts} parameter |
|
447 |
above. Proper proof methods would do something ``appropriate'' with the list |
|
448 |
of current facts, though. Single-rule methods usually do strict |
|
449 |
forward-chaining (e.g.\ by using \texttt{Method.multi_resolves}), while |
|
450 |
automatic ones just insert the facts using \texttt{Method.insert_tac} before |
|
451 |
applying the main tactic. |
|
7167 | 452 |
\end{descr} |
7134 | 453 |
|
454 |
||
8250 | 455 |
\subsection{Syntax translation functions} |
7134 | 456 |
|
8250 | 457 |
\indexisarcmd{parse-ast-translation}\indexisarcmd{parse-translation} |
458 |
\indexisarcmd{print-translation}\indexisarcmd{typed-print-translation} |
|
459 |
\indexisarcmd{print-ast-translation}\indexisarcmd{token-translation} |
|
460 |
\begin{matharray}{rcl} |
|
461 |
\isarcmd{parse_ast_translation} & : & \isartrans{theory}{theory} \\ |
|
462 |
\isarcmd{parse_translation} & : & \isartrans{theory}{theory} \\ |
|
463 |
\isarcmd{print_translation} & : & \isartrans{theory}{theory} \\ |
|
464 |
\isarcmd{typed_print_translation} & : & \isartrans{theory}{theory} \\ |
|
465 |
\isarcmd{print_ast_translation} & : & \isartrans{theory}{theory} \\ |
|
466 |
\isarcmd{token_translation} & : & \isartrans{theory}{theory} \\ |
|
467 |
\end{matharray} |
|
7134 | 468 |
|
9273 | 469 |
\railalias{parseasttranslation}{parse\_ast\_translation} |
470 |
\railterm{parseasttranslation} |
|
471 |
||
472 |
\railalias{parsetranslation}{parse\_translation} |
|
473 |
\railterm{parsetranslation} |
|
474 |
||
475 |
\railalias{printtranslation}{print\_translation} |
|
476 |
\railterm{printtranslation} |
|
477 |
||
478 |
\railalias{typedprinttranslation}{typed\_print\_translation} |
|
479 |
\railterm{typedprinttranslation} |
|
480 |
||
481 |
\railalias{printasttranslation}{print\_ast\_translation} |
|
482 |
\railterm{printasttranslation} |
|
483 |
||
484 |
\railalias{tokentranslation}{token\_translation} |
|
485 |
\railterm{tokentranslation} |
|
486 |
||
487 |
\begin{rail} |
|
488 |
( parseasttranslation | parsetranslation | printtranslation | typedprinttranslation | |
|
489 |
printasttranslation | tokentranslation ) text comment? |
|
490 |
\end{rail} |
|
491 |
||
8250 | 492 |
Syntax translation functions written in ML admit almost arbitrary |
493 |
manipulations of Isabelle's inner syntax. Any of the above commands have a |
|
494 |
single \railqtoken{text} argument that refers to an ML expression of |
|
8379 | 495 |
appropriate type. |
496 |
||
497 |
\begin{ttbox} |
|
498 |
val parse_ast_translation : (string * (ast list -> ast)) list |
|
499 |
val parse_translation : (string * (term list -> term)) list |
|
500 |
val print_translation : (string * (term list -> term)) list |
|
501 |
val typed_print_translation : |
|
502 |
(string * (bool -> typ -> term list -> term)) list |
|
503 |
val print_ast_translation : (string * (ast list -> ast)) list |
|
504 |
val token_translation : |
|
505 |
(string * string * (string -> string * real)) list |
|
506 |
\end{ttbox} |
|
507 |
See \cite[\S8]{isabelle-ref} for more information on syntax transformations. |
|
7134 | 508 |
|
509 |
||
510 |
\subsection{Oracles} |
|
511 |
||
512 |
\indexisarcmd{oracle} |
|
513 |
\begin{matharray}{rcl} |
|
514 |
\isarcmd{oracle} & : & \isartrans{theory}{theory} \\ |
|
515 |
\end{matharray} |
|
516 |
||
7175 | 517 |
Oracles provide an interface to external reasoning systems, without giving up |
518 |
control completely --- each theorem carries a derivation object recording any |
|
519 |
oracle invocation. See \cite[\S6]{isabelle-ref} for more information. |
|
520 |
||
7134 | 521 |
\begin{rail} |
522 |
'oracle' name '=' text comment? |
|
523 |
; |
|
524 |
\end{rail} |
|
525 |
||
7167 | 526 |
\begin{descr} |
7175 | 527 |
\item [$\isarkeyword{oracle}~name=text$] declares oracle $name$ to be ML |
8379 | 528 |
function $text$, which has to be of type |
529 |
\texttt{Sign.sg~*~Object.T~->~term}. |
|
7167 | 530 |
\end{descr} |
7134 | 531 |
|
532 |
||
533 |
\section{Proof commands} |
|
534 |
||
7987 | 535 |
Proof commands perform transitions of Isar/VM machine configurations, which |
7315 | 536 |
are block-structured, consisting of a stack of nodes with three main |
7335 | 537 |
components: logical proof context, current facts, and open goals. Isar/VM |
8547 | 538 |
transitions are \emph{typed} according to the following three different modes |
539 |
of operation: |
|
7167 | 540 |
\begin{descr} |
541 |
\item [$proof(prove)$] means that a new goal has just been stated that is now |
|
8547 | 542 |
to be \emph{proven}; the next command may refine it by some proof method, |
543 |
and enter a sub-proof to establish the actual result. |
|
10858 | 544 |
\item [$proof(state)$] is like a nested theory mode: the context may be |
7987 | 545 |
augmented by \emph{stating} additional assumptions, intermediate results |
546 |
etc. |
|
7895 | 547 |
\item [$proof(chain)$] is intermediate between $proof(state)$ and |
7987 | 548 |
$proof(prove)$: existing facts (i.e.\ the contents of the special ``$this$'' |
549 |
register) have been just picked up in order to be used when refining the |
|
550 |
goal claimed next. |
|
7167 | 551 |
\end{descr} |
7134 | 552 |
|
12618 | 553 |
%FIXME diagram? |
7167 | 554 |
|
7895 | 555 |
\subsection{Proof markup commands}\label{sec:markup-prf} |
7167 | 556 |
|
7987 | 557 |
\indexisarcmd{sect}\indexisarcmd{subsect}\indexisarcmd{subsubsect} |
7895 | 558 |
\indexisarcmd{txt}\indexisarcmd{txt-raw} |
7134 | 559 |
\begin{matharray}{rcl} |
8101 | 560 |
\isarcmd{sect} & : & \isartrans{proof}{proof} \\ |
561 |
\isarcmd{subsect} & : & \isartrans{proof}{proof} \\ |
|
562 |
\isarcmd{subsubsect} & : & \isartrans{proof}{proof} \\ |
|
563 |
\isarcmd{txt} & : & \isartrans{proof}{proof} \\ |
|
564 |
\isarcmd{txt_raw} & : & \isartrans{proof}{proof} \\ |
|
7134 | 565 |
\end{matharray} |
566 |
||
7895 | 567 |
These markup commands for proof mode closely correspond to the ones of theory |
8684 | 568 |
mode (see \S\ref{sec:markup-thy}). |
7895 | 569 |
|
570 |
\railalias{txtraw}{txt\_raw} |
|
571 |
\railterm{txtraw} |
|
7175 | 572 |
|
7134 | 573 |
\begin{rail} |
7895 | 574 |
('sect' | 'subsect' | 'subsubsect' | 'txt' | txtraw) text |
7134 | 575 |
; |
576 |
\end{rail} |
|
577 |
||
578 |
||
7315 | 579 |
\subsection{Proof context}\label{sec:proof-context} |
7134 | 580 |
|
7315 | 581 |
\indexisarcmd{fix}\indexisarcmd{assume}\indexisarcmd{presume}\indexisarcmd{def} |
7134 | 582 |
\begin{matharray}{rcl} |
583 |
\isarcmd{fix} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
584 |
\isarcmd{assume} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
585 |
\isarcmd{presume} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
586 |
\isarcmd{def} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
587 |
\end{matharray} |
|
588 |
||
7315 | 589 |
The logical proof context consists of fixed variables and assumptions. The |
590 |
former closely correspond to Skolem constants, or meta-level universal |
|
591 |
quantification as provided by the Isabelle/Pure logical framework. |
|
592 |
Introducing some \emph{arbitrary, but fixed} variable via $\FIX x$ results in |
|
7987 | 593 |
a local value that may be used in the subsequent proof as any other variable |
7895 | 594 |
or constant. Furthermore, any result $\edrv \phi[x]$ exported from the |
7987 | 595 |
context will be universally closed wrt.\ $x$ at the outermost level: $\edrv |
596 |
\All x \phi$ (this is expressed using Isabelle's meta-variables). |
|
7315 | 597 |
|
598 |
Similarly, introducing some assumption $\chi$ has two effects. On the one |
|
599 |
hand, a local theorem is created that may be used as a fact in subsequent |
|
7895 | 600 |
proof steps. On the other hand, any result $\chi \drv \phi$ exported from the |
601 |
context becomes conditional wrt.\ the assumption: $\edrv \chi \Imp \phi$. |
|
602 |
Thus, solving an enclosing goal using such a result would basically introduce |
|
603 |
a new subgoal stemming from the assumption. How this situation is handled |
|
604 |
depends on the actual version of assumption command used: while $\ASSUMENAME$ |
|
605 |
insists on solving the subgoal by unification with some premise of the goal, |
|
606 |
$\PRESUMENAME$ leaves the subgoal unchanged in order to be proved later by the |
|
607 |
user. |
|
7315 | 608 |
|
7319 | 609 |
Local definitions, introduced by $\DEF{}{x \equiv t}$, are achieved by |
7987 | 610 |
combining $\FIX x$ with another version of assumption that causes any |
611 |
hypothetical equation $x \equiv t$ to be eliminated by the reflexivity rule. |
|
612 |
Thus, exporting some result $x \equiv t \drv \phi[x]$ yields $\edrv \phi[t]$. |
|
7175 | 613 |
|
10686 | 614 |
\railalias{equiv}{\isasymequiv} |
615 |
\railterm{equiv} |
|
616 |
||
7134 | 617 |
\begin{rail} |
12618 | 618 |
'fix' (vars comment? + 'and') |
7134 | 619 |
; |
12618 | 620 |
('assume' | 'presume') (props comment? + 'and') |
7134 | 621 |
; |
10686 | 622 |
'def' thmdecl? \\ name ('==' | equiv) term termpat? comment? |
7134 | 623 |
; |
624 |
\end{rail} |
|
625 |
||
7167 | 626 |
\begin{descr} |
8547 | 627 |
\item [$\FIX{\vec x}$] introduces local \emph{arbitrary, but fixed} variables |
628 |
$\vec x$. |
|
8515 | 629 |
\item [$\ASSUME{a}{\vec\phi}$ and $\PRESUME{a}{\vec\phi}$] introduce local |
630 |
theorems $\vec\phi$ by assumption. Subsequent results applied to an |
|
631 |
enclosing goal (e.g.\ by $\SHOWNAME$) are handled as follows: $\ASSUMENAME$ |
|
632 |
expects to be able to unify with existing premises in the goal, while |
|
633 |
$\PRESUMENAME$ leaves $\vec\phi$ as new subgoals. |
|
7335 | 634 |
|
635 |
Several lists of assumptions may be given (separated by |
|
7895 | 636 |
$\isarkeyword{and}$); the resulting list of current facts consists of all of |
637 |
these concatenated. |
|
7315 | 638 |
\item [$\DEF{a}{x \equiv t}$] introduces a local (non-polymorphic) definition. |
639 |
In results exported from the context, $x$ is replaced by $t$. Basically, |
|
7987 | 640 |
$\DEF{}{x \equiv t}$ abbreviates $\FIX{x}~\ASSUME{}{x \equiv t}$, with the |
7335 | 641 |
resulting hypothetical equation solved by reflexivity. |
7431 | 642 |
|
643 |
The default name for the definitional equation is $x_def$. |
|
7167 | 644 |
\end{descr} |
645 |
||
7895 | 646 |
The special name $prems$\indexisarthm{prems} refers to all assumptions of the |
647 |
current context as a list of theorems. |
|
7315 | 648 |
|
7167 | 649 |
|
650 |
\subsection{Facts and forward chaining} |
|
651 |
||
652 |
\indexisarcmd{note}\indexisarcmd{then}\indexisarcmd{from}\indexisarcmd{with} |
|
653 |
\begin{matharray}{rcl} |
|
654 |
\isarcmd{note} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
655 |
\isarcmd{then} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
656 |
\isarcmd{from} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
657 |
\isarcmd{with} & : & \isartrans{proof(state)}{proof(chain)} \\ |
|
658 |
\end{matharray} |
|
659 |
||
7319 | 660 |
New facts are established either by assumption or proof of local statements. |
7335 | 661 |
Any fact will usually be involved in further proofs, either as explicit |
8547 | 662 |
arguments of proof methods, or when forward chaining towards the next goal via |
7335 | 663 |
$\THEN$ (and variants). Note that the special theorem name |
7987 | 664 |
$this$\indexisarthm{this} refers to the most recently established facts. |
7167 | 665 |
\begin{rail} |
9199 | 666 |
'note' (thmdef? thmrefs comment? + 'and') |
7167 | 667 |
; |
668 |
'then' comment? |
|
669 |
; |
|
9199 | 670 |
('from' | 'with') (thmrefs comment? + 'and') |
7167 | 671 |
; |
672 |
\end{rail} |
|
673 |
||
674 |
\begin{descr} |
|
7175 | 675 |
\item [$\NOTE{a}{\vec b}$] recalls existing facts $\vec b$, binding the result |
676 |
as $a$. Note that attributes may be involved as well, both on the left and |
|
677 |
right hand sides. |
|
7167 | 678 |
\item [$\THEN$] indicates forward chaining by the current facts in order to |
7895 | 679 |
establish the goal to be claimed next. The initial proof method invoked to |
680 |
refine that will be offered the facts to do ``anything appropriate'' (cf.\ |
|
681 |
also \S\ref{sec:proof-steps}). For example, method $rule$ (see |
|
8515 | 682 |
\S\ref{sec:pure-meth-att}) would typically do an elimination rather than an |
7895 | 683 |
introduction. Automatic methods usually insert the facts into the goal |
8547 | 684 |
state before operation. This provides a simple scheme to control relevance |
685 |
of facts in automated proof search. |
|
7335 | 686 |
\item [$\FROM{\vec b}$] abbreviates $\NOTE{}{\vec b}~\THEN$; thus $\THEN$ is |
7458 | 687 |
equivalent to $\FROM{this}$. |
10858 | 688 |
\item [$\WITH{\vec b}$] abbreviates $\FROM{\vec b~this}$; thus the forward |
7175 | 689 |
chaining is from earlier facts together with the current ones. |
7167 | 690 |
\end{descr} |
691 |
||
8515 | 692 |
Basic proof methods (such as $rule$, see \S\ref{sec:pure-meth-att}) expect |
7895 | 693 |
multiple facts to be given in their proper order, corresponding to a prefix of |
694 |
the premises of the rule involved. Note that positions may be easily skipped |
|
9695 | 695 |
using something like $\FROM{\Text{\texttt{_}}~a~b}$, for example. This |
8547 | 696 |
involves the trivial rule $\PROP\psi \Imp \PROP\psi$, which happens to be |
697 |
bound in Isabelle/Pure as ``\texttt{_}'' |
|
698 |
(underscore).\indexisarthm{_@\texttt{_}} |
|
7389 | 699 |
|
9238 | 700 |
Forward chaining with an empty list of theorems is the same as not chaining. |
701 |
Thus $\FROM{nothing}$ has no effect apart from entering $prove(chain)$ mode, |
|
702 |
since $nothing$\indexisarthm{nothing} is bound to the empty list of facts. |
|
703 |
||
7167 | 704 |
|
705 |
\subsection{Goal statements} |
|
706 |
||
12618 | 707 |
\indexisarcmd{lemma}\indexisarcmd{theorem}\indexisarcmd{corollary} |
7167 | 708 |
\indexisarcmd{have}\indexisarcmd{show}\indexisarcmd{hence}\indexisarcmd{thus} |
709 |
\begin{matharray}{rcl} |
|
12618 | 710 |
\isarcmd{lemma} & : & \isartrans{theory}{proof(prove)} \\ |
7167 | 711 |
\isarcmd{theorem} & : & \isartrans{theory}{proof(prove)} \\ |
12618 | 712 |
\isarcmd{corollary} & : & \isartrans{theory}{proof(prove)} \\ |
7987 | 713 |
\isarcmd{have} & : & \isartrans{proof(state) ~|~ proof(chain)}{proof(prove)} \\ |
714 |
\isarcmd{show} & : & \isartrans{proof(state) ~|~ proof(chain)}{proof(prove)} \\ |
|
7167 | 715 |
\isarcmd{hence} & : & \isartrans{proof(state)}{proof(prove)} \\ |
716 |
\isarcmd{thus} & : & \isartrans{proof(state)}{proof(prove)} \\ |
|
717 |
\end{matharray} |
|
718 |
||
12618 | 719 |
From a theory context, proof mode is entered from theory mode by initial goal |
720 |
commands $\LEMMANAME$, $\THEOREMNAME$, and $\COROLLARYNAME$. Within a proof, |
|
721 |
new claims may be introduced locally as well; four variants are available, |
|
722 |
indicating whether the result is meant to solve some pending goal or whether |
|
723 |
forward chaining is indicated. |
|
724 |
||
725 |
Goals may consist of multiple statements, resulting in a list of facts |
|
726 |
eventually. A pending multi-goal is internally represented as a meta-level |
|
727 |
conjunction (printed as \verb,&&,), which is automatically split into the |
|
728 |
corresponding number of sub-goals prior to any initial method application, via |
|
729 |
$\PROOFNAME$ (\S\ref{sec:proof-steps}) or $\APPLYNAME$ |
|
730 |
(\S\ref{sec:tactic-commands}).\footnote{Deviating from the latter principle, |
|
731 |
the $induct$ method covered in \S\ref{sec:cases-induct-meth} acts on |
|
732 |
multiple claims simultaneously.} |
|
733 |
||
734 |
%FIXME define locale, context |
|
7175 | 735 |
|
7167 | 736 |
\begin{rail} |
12618 | 737 |
('lemma' | 'theorem' | 'corollary') locale context goal |
7167 | 738 |
; |
739 |
('have' | 'show' | 'hence' | 'thus') goal |
|
740 |
; |
|
741 |
||
12618 | 742 |
goal: (props comment? + 'and') |
7167 | 743 |
; |
744 |
\end{rail} |
|
745 |
||
746 |
\begin{descr} |
|
12618 | 747 |
\item [$\LEMMA{a}{\vec\phi}$] enters proof mode with $\vec\phi$ as main goal, |
748 |
eventually resulting in some fact $\turn \vec\phi$ to be put back into the |
|
749 |
theory context, and optionally into the specified locale, cf.\ |
|
750 |
\S\ref{sec:locale}. An additional \railnonterm{context} specification may |
|
751 |
build an initial proof context for the subsequent claim; this may include |
|
752 |
local definitions and syntax as well, see \S\ref{sec:locale} for more |
|
753 |
information. |
|
754 |
||
755 |
\item [$\THEOREM{a}{\vec\phi}$ and $\COROLLARY{a}{\vec\phi}$] are essentially |
|
756 |
the same as $\LEMMA{a}{\vec\phi}$, but the facts are internally marked as |
|
757 |
being of a different kind. This discrimination acts like a formal comment. |
|
758 |
||
759 |
\item [$\HAVE{a}{\vec\phi}$] claims a local goal, eventually resulting in a |
|
760 |
fact within the current logical context. This operation is completely |
|
761 |
independent of any pending sub-goals of an enclosing goal statements, so |
|
762 |
$\HAVENAME$ may be freely used for experimental exploration of potential |
|
763 |
results within a proof body. |
|
764 |
||
765 |
\item [$\SHOW{a}{\vec\phi}$] is like $\HAVE{a}{\vec\phi}$ plus a second stage |
|
766 |
to refine some pending sub-goal for each one of the finished result, after |
|
767 |
having been exported into the corresponding context (at the head of the |
|
768 |
sub-proof that the $\SHOWNAME$ command belongs to). |
|
769 |
||
770 |
To accommodate interactive debugging, resulting rules are printed before |
|
771 |
being applied internally. Even more, interactive execution of $\SHOWNAME$ |
|
772 |
predicts potential failure after finishing its proof, and displays the |
|
773 |
resulting error message as a warning beforehand, adding this header: |
|
774 |
||
775 |
\begin{ttbox} |
|
776 |
Problem! Local statement will fail to solve any pending goal |
|
777 |
\end{ttbox} |
|
778 |
||
7895 | 779 |
\item [$\HENCENAME$] abbreviates $\THEN~\HAVENAME$, i.e.\ claims a local goal |
780 |
to be proven by forward chaining the current facts. Note that $\HENCENAME$ |
|
781 |
is also equivalent to $\FROM{this}~\HAVENAME$. |
|
782 |
\item [$\THUSNAME$] abbreviates $\THEN~\SHOWNAME$. Note that $\THUSNAME$ is |
|
783 |
also equivalent to $\FROM{this}~\SHOWNAME$. |
|
7167 | 784 |
\end{descr} |
785 |
||
10550 | 786 |
Any goal statement causes some term abbreviations (such as $\Var{thesis}$, |
787 |
$\dots$) to be bound automatically, see also \S\ref{sec:term-abbrev}. |
|
11549 | 788 |
Furthermore, the local context of a (non-atomic) goal is provided via the |
12618 | 789 |
$rule_context$\indexisarcase{rule-context} case, see also |
790 |
\S\ref{sec:rule-cases}. |
|
10550 | 791 |
|
792 |
\medskip |
|
793 |
||
794 |
\begin{warn} |
|
795 |
Isabelle/Isar suffers theory-level goal statements to contain \emph{unbound |
|
796 |
schematic variables}, although this does not conform to the aim of |
|
797 |
human-readable proof documents! The main problem with schematic goals is |
|
798 |
that the actual outcome is usually hard to predict, depending on the |
|
799 |
behavior of the actual proof methods applied during the reasoning. Note |
|
800 |
that most semi-automated methods heavily depend on several kinds of implicit |
|
801 |
rule declarations within the current theory context. As this would also |
|
802 |
result in non-compositional checking of sub-proofs, \emph{local goals} are |
|
12618 | 803 |
not allowed to be schematic at all. Nevertheless, schematic goals do have |
804 |
their use in Prolog-style interactive synthesis of proven results, usually |
|
805 |
by stepwise refinement via emulation of traditional Isabelle tactic scripts |
|
806 |
(see also \S\ref{sec:tactic-commands}). In any case, users should know what |
|
807 |
they are doing. |
|
10550 | 808 |
\end{warn} |
8991 | 809 |
|
7167 | 810 |
|
811 |
\subsection{Initial and terminal proof steps}\label{sec:proof-steps} |
|
812 |
||
7175 | 813 |
\indexisarcmd{proof}\indexisarcmd{qed}\indexisarcmd{by} |
814 |
\indexisarcmd{.}\indexisarcmd{..}\indexisarcmd{sorry} |
|
815 |
\begin{matharray}{rcl} |
|
816 |
\isarcmd{proof} & : & \isartrans{proof(prove)}{proof(state)} \\ |
|
817 |
\isarcmd{qed} & : & \isartrans{proof(state)}{proof(state) ~|~ theory} \\ |
|
818 |
\isarcmd{by} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
819 |
\isarcmd{.\,.} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
820 |
\isarcmd{.} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
821 |
\isarcmd{sorry} & : & \isartrans{proof(prove)}{proof(state) ~|~ theory} \\ |
|
822 |
\end{matharray} |
|
823 |
||
8547 | 824 |
Arbitrary goal refinement via tactics is considered harmful. Properly, the |
7335 | 825 |
Isar framework admits proof methods to be invoked in two places only. |
7167 | 826 |
\begin{enumerate} |
7175 | 827 |
\item An \emph{initial} refinement step $\PROOF{m@1}$ reduces a newly stated |
7335 | 828 |
goal to a number of sub-goals that are to be solved later. Facts are passed |
7895 | 829 |
to $m@1$ for forward chaining, if so indicated by $proof(chain)$ mode. |
7167 | 830 |
|
7987 | 831 |
\item A \emph{terminal} conclusion step $\QED{m@2}$ is intended to solve |
832 |
remaining goals. No facts are passed to $m@2$. |
|
7167 | 833 |
\end{enumerate} |
834 |
||
8547 | 835 |
The only other proper way to affect pending goals is by $\SHOWNAME$, which |
836 |
involves an explicit statement of what is to be solved. |
|
7167 | 837 |
|
7175 | 838 |
\medskip |
839 |
||
7167 | 840 |
Also note that initial proof methods should either solve the goal completely, |
7895 | 841 |
or constitute some well-understood reduction to new sub-goals. Arbitrary |
842 |
automatic proof tools that are prone leave a large number of badly structured |
|
843 |
sub-goals are no help in continuing the proof document in any intelligible |
|
7987 | 844 |
way. |
7167 | 845 |
|
7175 | 846 |
\medskip |
847 |
||
8547 | 848 |
Unless given explicitly by the user, the default initial method is ``$rule$'', |
849 |
which applies a single standard elimination or introduction rule according to |
|
850 |
the topmost symbol involved. There is no separate default terminal method. |
|
851 |
Any remaining goals are always solved by assumption in the very last step. |
|
7167 | 852 |
|
853 |
\begin{rail} |
|
854 |
'proof' interest? meth? comment? |
|
855 |
; |
|
856 |
'qed' meth? comment? |
|
857 |
; |
|
858 |
'by' meth meth? comment? |
|
859 |
; |
|
860 |
('.' | '..' | 'sorry') comment? |
|
861 |
; |
|
862 |
||
863 |
meth: method interest? |
|
864 |
; |
|
865 |
\end{rail} |
|
866 |
||
867 |
\begin{descr} |
|
7335 | 868 |
\item [$\PROOF{m@1}$] refines the goal by proof method $m@1$; facts for |
869 |
forward chaining are passed if so indicated by $proof(chain)$ mode. |
|
870 |
\item [$\QED{m@2}$] refines any remaining goals by proof method $m@2$ and |
|
7895 | 871 |
concludes the sub-proof by assumption. If the goal had been $\SHOWNAME$ (or |
872 |
$\THUSNAME$), some pending sub-goal is solved as well by the rule resulting |
|
873 |
from the result \emph{exported} into the enclosing goal context. Thus |
|
874 |
$\QEDNAME$ may fail for two reasons: either $m@2$ fails, or the resulting |
|
875 |
rule does not fit to any pending goal\footnote{This includes any additional |
|
876 |
``strong'' assumptions as introduced by $\ASSUMENAME$.} of the enclosing |
|
877 |
context. Debugging such a situation might involve temporarily changing |
|
878 |
$\SHOWNAME$ into $\HAVENAME$, or weakening the local context by replacing |
|
879 |
some occurrences of $\ASSUMENAME$ by $\PRESUMENAME$. |
|
880 |
\item [$\BYY{m@1}{m@2}$] is a \emph{terminal proof}\index{proof!terminal}; it |
|
7987 | 881 |
abbreviates $\PROOF{m@1}~\QED{m@2}$, with backtracking across both methods, |
882 |
though. Debugging an unsuccessful $\BYY{m@1}{m@2}$ commands might be done |
|
7895 | 883 |
by expanding its definition; in many cases $\PROOF{m@1}$ is already |
7175 | 884 |
sufficient to see what is going wrong. |
7895 | 885 |
\item [``$\DDOT$''] is a \emph{default proof}\index{proof!default}; it |
8515 | 886 |
abbreviates $\BY{rule}$. |
7895 | 887 |
\item [``$\DOT$''] is a \emph{trivial proof}\index{proof!trivial}; it |
8195 | 888 |
abbreviates $\BY{this}$. |
12618 | 889 |
\item [$\SORRY$] is a \emph{fake proof}\index{proof!fake} pretending to solve |
890 |
the pending claim without further ado. This only works in interactive |
|
891 |
development, or if the \texttt{quick_and_dirty} flag is enabled. Certainly, |
|
892 |
any facts emerging from fake proofs are not the real thing. Internally, |
|
893 |
each theorem container is tainted by an oracle invocation, which is |
|
894 |
indicated as ``$[!]$'' in the printed result. |
|
895 |
||
896 |
The most important application of $\SORRY$ is to support experimentation and |
|
897 |
top-down proof development in a simple manner. |
|
8515 | 898 |
\end{descr} |
899 |
||
900 |
||
901 |
\subsection{Fundamental methods and attributes}\label{sec:pure-meth-att} |
|
902 |
||
8547 | 903 |
The following proof methods and attributes refer to basic logical operations |
904 |
of Isar. Further methods and attributes are provided by several generic and |
|
905 |
object-logic specific tools and packages (see chapters \ref{ch:gen-tools} and |
|
906 |
\ref{ch:hol-tools}). |
|
8515 | 907 |
|
908 |
\indexisarmeth{assumption}\indexisarmeth{this}\indexisarmeth{rule}\indexisarmeth{$-$} |
|
9936 | 909 |
\indexisaratt{intro}\indexisaratt{elim}\indexisaratt{dest}\indexisaratt{rule} |
8515 | 910 |
\indexisaratt{OF}\indexisaratt{of} |
911 |
\begin{matharray}{rcl} |
|
912 |
assumption & : & \isarmeth \\ |
|
913 |
this & : & \isarmeth \\ |
|
914 |
rule & : & \isarmeth \\ |
|
915 |
- & : & \isarmeth \\ |
|
916 |
OF & : & \isaratt \\ |
|
917 |
of & : & \isaratt \\ |
|
918 |
intro & : & \isaratt \\ |
|
919 |
elim & : & \isaratt \\ |
|
920 |
dest & : & \isaratt \\ |
|
9936 | 921 |
rule & : & \isaratt \\ |
8515 | 922 |
\end{matharray} |
923 |
||
924 |
\begin{rail} |
|
8547 | 925 |
'rule' thmrefs? |
8515 | 926 |
; |
927 |
'OF' thmrefs |
|
928 |
; |
|
8693 | 929 |
'of' insts ('concl' ':' insts)? |
8515 | 930 |
; |
9936 | 931 |
'rule' 'del' |
932 |
; |
|
8515 | 933 |
\end{rail} |
934 |
||
935 |
\begin{descr} |
|
936 |
\item [$assumption$] solves some goal by a single assumption step. Any facts |
|
937 |
given (${} \le 1$) are guaranteed to participate in the refinement. Recall |
|
938 |
that $\QEDNAME$ (see \S\ref{sec:proof-steps}) already concludes any |
|
939 |
remaining sub-goals by assumption. |
|
940 |
\item [$this$] applies all of the current facts directly as rules. Recall |
|
941 |
that ``$\DOT$'' (dot) abbreviates $\BY{this}$. |
|
8547 | 942 |
\item [$rule~\vec a$] applies some rule given as argument in backward manner; |
8515 | 943 |
facts are used to reduce the rule before applying it to the goal. Thus |
944 |
$rule$ without facts is plain \emph{introduction}, while with facts it |
|
945 |
becomes \emph{elimination}. |
|
946 |
||
8547 | 947 |
When no arguments are given, the $rule$ method tries to pick appropriate |
948 |
rules automatically, as declared in the current context using the $intro$, |
|
949 |
$elim$, $dest$ attributes (see below). This is the default behavior of |
|
950 |
$\PROOFNAME$ and ``$\DDOT$'' (double-dot) steps (see |
|
8515 | 951 |
\S\ref{sec:proof-steps}). |
952 |
\item [``$-$''] does nothing but insert the forward chaining facts as premises |
|
953 |
into the goal. Note that command $\PROOFNAME$ without any method actually |
|
954 |
performs a single reduction step using the $rule$ method; thus a plain |
|
955 |
\emph{do-nothing} proof step would be $\PROOF{-}$ rather than $\PROOFNAME$ |
|
956 |
alone. |
|
8547 | 957 |
\item [$OF~\vec a$] applies some theorem to given rules $\vec a$ (in |
958 |
parallel). This corresponds to the \texttt{MRS} operator in ML |
|
959 |
\cite[\S5]{isabelle-ref}, but note the reversed order. Positions may be |
|
960 |
skipped by including ``$\_$'' (underscore) as argument. |
|
961 |
\item [$of~\vec t$] performs positional instantiation. The terms $\vec t$ are |
|
8515 | 962 |
substituted for any schematic variables occurring in a theorem from left to |
963 |
right; ``\texttt{_}'' (underscore) indicates to skip a position. Arguments |
|
964 |
following a ``$concl\colon$'' specification refer to positions of the |
|
965 |
conclusion of a rule. |
|
966 |
\item [$intro$, $elim$, and $dest$] declare introduction, elimination, and |
|
967 |
destruct rules, respectively. Note that the classical reasoner (see |
|
968 |
\S\ref{sec:classical-basic}) introduces different versions of these |
|
969 |
attributes, and the $rule$ method, too. In object-logics with classical |
|
970 |
reasoning enabled, the latter version should be used all the time to avoid |
|
971 |
confusion! |
|
9936 | 972 |
\item [$rule~del$] undeclares introduction, elimination, or destruct rules. |
7315 | 973 |
\end{descr} |
974 |
||
975 |
||
976 |
\subsection{Term abbreviations}\label{sec:term-abbrev} |
|
977 |
||
978 |
\indexisarcmd{let} |
|
979 |
\begin{matharray}{rcl} |
|
980 |
\isarcmd{let} & : & \isartrans{proof(state)}{proof(state)} \\ |
|
981 |
\isarkeyword{is} & : & syntax \\ |
|
982 |
\end{matharray} |
|
983 |
||
984 |
Abbreviations may be either bound by explicit $\LET{p \equiv t}$ statements, |
|
7987 | 985 |
or by annotating assumptions or goal statements with a list of patterns |
986 |
$\ISS{p@1\;\dots}{p@n}$. In both cases, higher-order matching is invoked to |
|
987 |
bind extra-logical term variables, which may be either named schematic |
|
988 |
variables of the form $\Var{x}$, or nameless dummies ``\texttt{_}'' |
|
989 |
(underscore).\indexisarvar{_@\texttt{_}} Note that in the $\LETNAME$ form the |
|
990 |
patterns occur on the left-hand side, while the $\ISNAME$ patterns are in |
|
991 |
postfix position. |
|
7315 | 992 |
|
8620
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
993 |
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
|
994 |
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
|
995 |
\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
|
996 |
in \emph{arbitrary} instances later. Even though actual polymorphism should |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
997 |
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
|
998 |
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
|
999 |
text. |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
1000 |
|
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
1001 |
\medskip |
3786d47f5570
support Hindley-Milner polymorphisms in results and bindings;
wenzelm
parents:
8547
diff
changeset
|
1002 |
|
7319 | 1003 |
Term abbreviations are quite different from actual local definitions as |
1004 |
introduced via $\DEFNAME$ (see \S\ref{sec:proof-context}). The latter are |
|
7315 | 1005 |
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
|
1006 |
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
|
1007 |
does not support polymorphism. |
7315 | 1008 |
|
1009 |
\begin{rail} |
|
8664 | 1010 |
'let' ((term + 'and') '=' term comment? + 'and') |
7315 | 1011 |
; |
1012 |
\end{rail} |
|
1013 |
||
1014 |
The syntax of $\ISNAME$ patterns follows \railnonterm{termpat} or |
|
12618 | 1015 |
\railnonterm{proppat} (see \S\ref{sec:term-decls}). |
7315 | 1016 |
|
1017 |
\begin{descr} |
|
1018 |
\item [$\LET{\vec p = \vec t}$] binds any text variables in patters $\vec p$ |
|
1019 |
by simultaneous higher-order matching against terms $\vec t$. |
|
1020 |
\item [$\IS{\vec p}$] resembles $\LETNAME$, but matches $\vec p$ against the |
|
1021 |
preceding statement. Also note that $\ISNAME$ is not a separate command, |
|
1022 |
but part of others (such as $\ASSUMENAME$, $\HAVENAME$ etc.). |
|
1023 |
\end{descr} |
|
1024 |
||
10160 | 1025 |
Some \emph{automatic} term abbreviations\index{term abbreviations} for goals |
7988 | 1026 |
and facts are available as well. For any open goal, |
10160 | 1027 |
$\Var{thesis}$\indexisarvar{thesis} refers to its object-level statement, |
1028 |
abstracted over any meta-level parameters (if present). Likewise, |
|
1029 |
$\Var{this}$\indexisarvar{this} is bound for fact statements resulting from |
|
1030 |
assumptions or finished goals. In case $\Var{this}$ refers to an object-logic |
|
1031 |
statement that is an application $f(t)$, then $t$ is bound to the special text |
|
1032 |
variable ``$\dots$''\indexisarvar{\dots} (three dots). The canonical |
|
1033 |
application of the latter are calculational proofs (see |
|
1034 |
\S\ref{sec:calculation}). |
|
1035 |
||
7315 | 1036 |
|
7134 | 1037 |
\subsection{Block structure} |
1038 |
||
8896 | 1039 |
\indexisarcmd{next}\indexisarcmd{\{}\indexisarcmd{\}} |
7397 | 1040 |
\begin{matharray}{rcl} |
8448 | 1041 |
\NEXT & : & \isartrans{proof(state)}{proof(state)} \\ |
7974 | 1042 |
\BG & : & \isartrans{proof(state)}{proof(state)} \\ |
1043 |
\EN & : & \isartrans{proof(state)}{proof(state)} \\ |
|
7397 | 1044 |
\end{matharray} |
1045 |
||
9030 | 1046 |
\railalias{lbrace}{\ttlbrace} |
1047 |
\railterm{lbrace} |
|
1048 |
||
1049 |
\railalias{rbrace}{\ttrbrace} |
|
1050 |
\railterm{rbrace} |
|
1051 |
||
1052 |
\begin{rail} |
|
1053 |
'next' comment? |
|
1054 |
; |
|
1055 |
lbrace comment? |
|
1056 |
; |
|
1057 |
rbrace comment? |
|
1058 |
; |
|
1059 |
\end{rail} |
|
1060 |
||
7167 | 1061 |
While Isar is inherently block-structured, opening and closing blocks is |
1062 |
mostly handled rather casually, with little explicit user-intervention. Any |
|
1063 |
local goal statement automatically opens \emph{two} blocks, which are closed |
|
1064 |
again when concluding the sub-proof (by $\QEDNAME$ etc.). Sections of |
|
8448 | 1065 |
different context within a sub-proof may be switched via $\NEXT$, which is |
1066 |
just a single block-close followed by block-open again. Thus the effect of |
|
1067 |
$\NEXT$ to reset the local proof context. There is no goal focus involved |
|
1068 |
here! |
|
7167 | 1069 |
|
7175 | 1070 |
For slightly more advanced applications, there are explicit block parentheses |
7895 | 1071 |
as well. These typically achieve a stronger forward style of reasoning. |
7167 | 1072 |
|
1073 |
\begin{descr} |
|
8448 | 1074 |
\item [$\NEXT$] switches to a fresh block within a sub-proof, resetting the |
1075 |
local context to the initial one. |
|
8896 | 1076 |
\item [$\BG$ and $\EN$] explicitly open and close blocks. Any current facts |
1077 |
pass through ``$\BG$'' unchanged, while ``$\EN$'' causes any result to be |
|
7895 | 1078 |
\emph{exported} into the enclosing context. Thus fixed variables are |
1079 |
generalized, assumptions discharged, and local definitions unfolded (cf.\ |
|
1080 |
\S\ref{sec:proof-context}). There is no difference of $\ASSUMENAME$ and |
|
1081 |
$\PRESUMENAME$ in this mode of forward reasoning --- in contrast to plain |
|
1082 |
backward reasoning with the result exported at $\SHOWNAME$ time. |
|
7167 | 1083 |
\end{descr} |
7134 | 1084 |
|
1085 |
||
9605 | 1086 |
\subsection{Emulating tactic scripts}\label{sec:tactic-commands} |
8515 | 1087 |
|
9605 | 1088 |
The Isar provides separate commands to accommodate tactic-style proof scripts |
1089 |
within the same system. While being outside the orthodox Isar proof language, |
|
1090 |
these might come in handy for interactive exploration and debugging, or even |
|
1091 |
actual tactical proof within new-style theories (to benefit from document |
|
1092 |
preparation, for example). See also \S\ref{sec:tactics} for actual tactics, |
|
1093 |
that have been encapsulated as proof methods. Proper proof methods may be |
|
1094 |
used in scripts, too. |
|
8515 | 1095 |
|
9605 | 1096 |
\indexisarcmd{apply}\indexisarcmd{apply-end}\indexisarcmd{done} |
8515 | 1097 |
\indexisarcmd{defer}\indexisarcmd{prefer}\indexisarcmd{back} |
9605 | 1098 |
\indexisarcmd{declare} |
8515 | 1099 |
\begin{matharray}{rcl} |
8533 | 1100 |
\isarcmd{apply}^* & : & \isartrans{proof(prove)}{proof(prove)} \\ |
9605 | 1101 |
\isarcmd{apply_end}^* & : & \isartrans{proof(state)}{proof(state)} \\ |
8946 | 1102 |
\isarcmd{done}^* & : & \isartrans{proof(prove)}{proof(state)} \\ |
8533 | 1103 |
\isarcmd{defer}^* & : & \isartrans{proof}{proof} \\ |
1104 |
\isarcmd{prefer}^* & : & \isartrans{proof}{proof} \\ |
|
1105 |
\isarcmd{back}^* & : & \isartrans{proof}{proof} \\ |
|
9605 | 1106 |
\isarcmd{declare}^* & : & \isartrans{theory}{theory} \\ |
8515 | 1107 |
\end{matharray} |
1108 |
||
1109 |
\railalias{applyend}{apply\_end} |
|
1110 |
\railterm{applyend} |
|
1111 |
||
1112 |
\begin{rail} |
|
9605 | 1113 |
( 'apply' | applyend ) method comment? |
8515 | 1114 |
; |
8946 | 1115 |
'done' comment? |
1116 |
; |
|
8682 | 1117 |
'defer' nat? comment? |
8515 | 1118 |
; |
8682 | 1119 |
'prefer' nat comment? |
8515 | 1120 |
; |
9273 | 1121 |
'back' comment? |
1122 |
; |
|
9605 | 1123 |
'declare' thmrefs comment? |
1124 |
; |
|
8515 | 1125 |
\end{rail} |
1126 |
||
1127 |
\begin{descr} |
|
10223 | 1128 |
\item [$\APPLY{m}$] applies proof method $m$ in initial position, but unlike |
1129 |
$\PROOFNAME$ it retains ``$proof(prove)$'' mode. Thus consecutive method |
|
1130 |
applications may be given just as in tactic scripts. |
|
8515 | 1131 |
|
8881 | 1132 |
Facts are passed to $m$ as indicated by the goal's forward-chain mode, and |
10223 | 1133 |
are \emph{consumed} afterwards. Thus any further $\APPLYNAME$ command would |
1134 |
always work in a purely backward manner. |
|
8946 | 1135 |
|
8515 | 1136 |
\item [$\isarkeyword{apply_end}~(m)$] applies proof method $m$ as if in |
1137 |
terminal position. Basically, this simulates a multi-step tactic script for |
|
1138 |
$\QEDNAME$, but may be given anywhere within the proof body. |
|
1139 |
||
1140 |
No facts are passed to $m$. Furthermore, the static context is that of the |
|
1141 |
enclosing goal (as for actual $\QEDNAME$). Thus the proof method may not |
|
1142 |
refer to any assumptions introduced in the current body, for example. |
|
9605 | 1143 |
|
1144 |
\item [$\isarkeyword{done}$] completes a proof script, provided that the |
|
1145 |
current goal state is already solved completely. Note that actual |
|
1146 |
structured proof commands (e.g.\ ``$\DOT$'' or $\SORRY$) may be used to |
|
1147 |
conclude proof scripts as well. |
|
1148 |
||
8515 | 1149 |
\item [$\isarkeyword{defer}~n$ and $\isarkeyword{prefer}~n$] shuffle the list |
1150 |
of pending goals: $defer$ puts off goal $n$ to the end of the list ($n = 1$ |
|
1151 |
by default), while $prefer$ brings goal $n$ to the top. |
|
9605 | 1152 |
|
8515 | 1153 |
\item [$\isarkeyword{back}$] does back-tracking over the result sequence of |
1154 |
the latest proof command.\footnote{Unlike the ML function \texttt{back} |
|
1155 |
\cite{isabelle-ref}, the Isar command does not search upwards for further |
|
1156 |
branch points.} Basically, any proof command may return multiple results. |
|
9605 | 1157 |
|
1158 |
\item [$\isarkeyword{declare}~thms$] declares theorems to the current theory |
|
1159 |
context. No theorem binding is involved here, unlike |
|
1160 |
$\isarkeyword{theorems}$ or $\isarkeyword{lemmas}$ (cf.\ |
|
1161 |
\S\ref{sec:axms-thms}). So $\isarkeyword{declare}$ only has the effect of |
|
1162 |
applying attributes as included in the theorem specification. |
|
9006 | 1163 |
\end{descr} |
1164 |
||
1165 |
Any proper Isar proof method may be used with tactic script commands such as |
|
10223 | 1166 |
$\APPLYNAME$. A few additional emulations of actual tactics are provided as |
1167 |
well; these would be never used in actual structured proofs, of course. |
|
9006 | 1168 |
|
8515 | 1169 |
|
1170 |
\subsection{Meta-linguistic features} |
|
1171 |
||
1172 |
\indexisarcmd{oops} |
|
1173 |
\begin{matharray}{rcl} |
|
1174 |
\isarcmd{oops} & : & \isartrans{proof}{theory} \\ |
|
1175 |
\end{matharray} |
|
1176 |
||
1177 |
The $\OOPS$ command discontinues the current proof attempt, while considering |
|
1178 |
the partial proof text as properly processed. This is conceptually quite |
|
1179 |
different from ``faking'' actual proofs via $\SORRY$ (see |
|
1180 |
\S\ref{sec:proof-steps}): $\OOPS$ does not observe the proof structure at all, |
|
1181 |
but goes back right to the theory level. Furthermore, $\OOPS$ does not |
|
1182 |
produce any result theorem --- there is no claim to be able to complete the |
|
1183 |
proof anyhow. |
|
1184 |
||
1185 |
A typical application of $\OOPS$ is to explain Isar proofs \emph{within} the |
|
1186 |
system itself, in conjunction with the document preparation tools of Isabelle |
|
1187 |
described in \cite{isabelle-sys}. Thus partial or even wrong proof attempts |
|
1188 |
can be discussed in a logically sound manner. Note that the Isabelle {\LaTeX} |
|
1189 |
macros can be easily adapted to print something like ``$\dots$'' instead of an |
|
1190 |
``$\OOPS$'' keyword. |
|
1191 |
||
12618 | 1192 |
\medskip The $\OOPS$ command is undo-able, unlike $\isarkeyword{kill}$ (see |
8547 | 1193 |
\S\ref{sec:history}). The effect is to get back to the theory \emph{before} |
1194 |
the opening of the proof. |
|
8515 | 1195 |
|
1196 |
||
7134 | 1197 |
\section{Other commands} |
1198 |
||
9605 | 1199 |
\subsection{Diagnostics} |
7134 | 1200 |
|
10858 | 1201 |
\indexisarcmd{pr}\indexisarcmd{thm}\indexisarcmd{term} |
1202 |
\indexisarcmd{prop}\indexisarcmd{typ} |
|
7134 | 1203 |
\begin{matharray}{rcl} |
8515 | 1204 |
\isarcmd{pr}^* & : & \isarkeep{\cdot} \\ |
1205 |
\isarcmd{thm}^* & : & \isarkeep{theory~|~proof} \\ |
|
1206 |
\isarcmd{term}^* & : & \isarkeep{theory~|~proof} \\ |
|
1207 |
\isarcmd{prop}^* & : & \isarkeep{theory~|~proof} \\ |
|
1208 |
\isarcmd{typ}^* & : & \isarkeep{theory~|~proof} \\ |
|
7134 | 1209 |
\end{matharray} |
1210 |
||
9605 | 1211 |
These diagnostic commands assist interactive development. Note that $undo$ |
1212 |
does not apply here, the theory or proof configuration is not changed. |
|
7335 | 1213 |
|
7134 | 1214 |
\begin{rail} |
9727 | 1215 |
'pr' modes? nat? (',' nat)? |
7134 | 1216 |
; |
10584 | 1217 |
'thm' modes? thmrefs comment? |
8485 | 1218 |
; |
10584 | 1219 |
'term' modes? term comment? |
7134 | 1220 |
; |
10584 | 1221 |
'prop' modes? prop comment? |
7134 | 1222 |
; |
10584 | 1223 |
'typ' modes? type comment? |
8485 | 1224 |
; |
1225 |
||
1226 |
modes: '(' (name + ) ')' |
|
7134 | 1227 |
; |
1228 |
\end{rail} |
|
1229 |
||
7167 | 1230 |
\begin{descr} |
9727 | 1231 |
\item [$\isarkeyword{pr}~goals, prems$] prints the current proof state (if |
1232 |
present), including the proof context, current facts and goals. The |
|
1233 |
optional limit arguments affect the number of goals and premises to be |
|
1234 |
displayed, which is initially 10 for both. Omitting limit values leaves the |
|
1235 |
current setting unchanged. |
|
8547 | 1236 |
\item [$\isarkeyword{thm}~\vec a$] retrieves theorems from the current theory |
1237 |
or proof context. Note that any attributes included in the theorem |
|
7974 | 1238 |
specifications are applied to a temporary context derived from the current |
8547 | 1239 |
theory or proof; the result is discarded, i.e.\ attributes involved in $\vec |
1240 |
a$ do not have any permanent effect. |
|
9727 | 1241 |
\item [$\isarkeyword{term}~t$ and $\isarkeyword{prop}~\phi$] read, type-check |
1242 |
and print terms or propositions according to the current theory or proof |
|
7895 | 1243 |
context; the inferred type of $t$ is output as well. Note that these |
1244 |
commands are also useful in inspecting the current environment of term |
|
1245 |
abbreviations. |
|
7974 | 1246 |
\item [$\isarkeyword{typ}~\tau$] reads and prints types of the meta-logic |
1247 |
according to the current theory or proof context. |
|
9605 | 1248 |
\end{descr} |
1249 |
||
1250 |
All of the diagnostic commands above admit a list of $modes$ to be specified, |
|
1251 |
which is appended to the current print mode (see also \cite{isabelle-ref}). |
|
1252 |
Thus the output behavior may be modified according particular print mode |
|
1253 |
features. For example, $\isarkeyword{pr}~(latex~xsymbols~symbols)$ would |
|
1254 |
print the current proof state with mathematical symbols and special characters |
|
1255 |
represented in {\LaTeX} source, according to the Isabelle style |
|
1256 |
\cite{isabelle-sys}. |
|
1257 |
||
1258 |
Note that antiquotations (cf.\ \S\ref{sec:antiq}) provide a more systematic |
|
1259 |
way to include formal items into the printed text document. |
|
1260 |
||
1261 |
||
1262 |
\subsection{Inspecting the context} |
|
1263 |
||
1264 |
\indexisarcmd{print-facts}\indexisarcmd{print-binds} |
|
1265 |
\indexisarcmd{print-commands}\indexisarcmd{print-syntax} |
|
1266 |
\indexisarcmd{print-methods}\indexisarcmd{print-attributes} |
|
10858 | 1267 |
\indexisarcmd{thms-containing}\indexisarcmd{thm-deps} |
1268 |
\indexisarcmd{print-theorems} |
|
9605 | 1269 |
\begin{matharray}{rcl} |
1270 |
\isarcmd{print_commands}^* & : & \isarkeep{\cdot} \\ |
|
1271 |
\isarcmd{print_syntax}^* & : & \isarkeep{theory~|~proof} \\ |
|
1272 |
\isarcmd{print_methods}^* & : & \isarkeep{theory~|~proof} \\ |
|
1273 |
\isarcmd{print_attributes}^* & : & \isarkeep{theory~|~proof} \\ |
|
10858 | 1274 |
\isarcmd{print_theorems}^* & : & \isarkeep{theory~|~proof} \\ |
1275 |
\isarcmd{thms_containing}^* & : & \isarkeep{theory~|~proof} \\ |
|
1276 |
\isarcmd{thms_deps}^* & : & \isarkeep{theory~|~proof} \\ |
|
9605 | 1277 |
\isarcmd{print_facts}^* & : & \isarkeep{proof} \\ |
1278 |
\isarcmd{print_binds}^* & : & \isarkeep{proof} \\ |
|
1279 |
\end{matharray} |
|
1280 |
||
10858 | 1281 |
\railalias{thmscontaining}{thms\_containing} |
1282 |
\railterm{thmscontaining} |
|
1283 |
||
1284 |
\railalias{thmdeps}{thm\_deps} |
|
1285 |
\railterm{thmdeps} |
|
1286 |
||
1287 |
\begin{rail} |
|
11017 | 1288 |
thmscontaining (term * ) |
10858 | 1289 |
; |
1290 |
thmdeps thmrefs |
|
1291 |
; |
|
1292 |
\end{rail} |
|
1293 |
||
1294 |
These commands print certain parts of the theory and proof context. Note that |
|
1295 |
there are some further ones available, such as for the set of rules declared |
|
1296 |
for simplifications. |
|
9605 | 1297 |
|
1298 |
\begin{descr} |
|
1299 |
\item [$\isarkeyword{print_commands}$] prints Isabelle's outer theory syntax, |
|
1300 |
including keywords and command. |
|
1301 |
\item [$\isarkeyword{print_syntax}$] prints the inner syntax of types and |
|
1302 |
terms, depending on the current context. The output can be very verbose, |
|
1303 |
including grammar tables and syntax translation rules. See \cite[\S7, |
|
1304 |
\S8]{isabelle-ref} for further information on Isabelle's inner syntax. |
|
10858 | 1305 |
\item [$\isarkeyword{print_methods}$] prints all proof methods available in |
1306 |
the current theory context. |
|
1307 |
\item [$\isarkeyword{print_attributes}$] prints all attributes available in |
|
1308 |
the current theory context. |
|
1309 |
\item [$\isarkeyword{print_theorems}$] prints theorems available in the |
|
1310 |
current theory context. In interactive mode this actually refers to the |
|
1311 |
theorems left by the last transaction; this allows to inspect the result of |
|
1312 |
advanced definitional packages, such as $\isarkeyword{datatype}$. |
|
11017 | 1313 |
\item [$\isarkeyword{thms_containing}~\vec t$] retrieves theorems from the |
1314 |
theory context containing all of the constants occurring in the terms $\vec |
|
1315 |
t$. Note that giving the empty list yields \emph{all} theorems of the |
|
1316 |
current theory. |
|
12618 | 1317 |
\item [$\isarkeyword{thm_deps}~\vec a$] visualizes dependencies of facts, |
1318 |
using Isabelle's graph browser tool (see also \cite{isabelle-sys}). |
|
8379 | 1319 |
\item [$\isarkeyword{print_facts}$] prints any named facts of the current |
1320 |
context, including assumptions and local results. |
|
1321 |
\item [$\isarkeyword{print_binds}$] prints all term abbreviations present in |
|
1322 |
the context. |
|
8485 | 1323 |
\end{descr} |
1324 |
||
1325 |
||
1326 |
\subsection{History commands}\label{sec:history} |
|
1327 |
||
1328 |
\indexisarcmd{undo}\indexisarcmd{redo}\indexisarcmd{kill} |
|
1329 |
\begin{matharray}{rcl} |
|
1330 |
\isarcmd{undo}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1331 |
\isarcmd{redo}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1332 |
\isarcmd{kill}^{{*}{*}} & : & \isarkeep{\cdot} \\ |
|
1333 |
\end{matharray} |
|
1334 |
||
1335 |
The Isabelle/Isar top-level maintains a two-stage history, for theory and |
|
1336 |
proof state transformation. Basically, any command can be undone using |
|
1337 |
$\isarkeyword{undo}$, excluding mere diagnostic elements. Its effect may be |
|
10858 | 1338 |
revoked via $\isarkeyword{redo}$, unless the corresponding |
8485 | 1339 |
$\isarkeyword{undo}$ step has crossed the beginning of a proof or theory. The |
1340 |
$\isarkeyword{kill}$ command aborts the current history node altogether, |
|
1341 |
discontinuing a proof or even the whole theory. This operation is \emph{not} |
|
12618 | 1342 |
undo-able. |
8485 | 1343 |
|
1344 |
\begin{warn} |
|
8547 | 1345 |
History commands should never be used with user interfaces such as |
1346 |
Proof~General \cite{proofgeneral,Aspinall:TACAS:2000}, which takes care of |
|
1347 |
stepping forth and back itself. Interfering by manual $\isarkeyword{undo}$, |
|
8510 | 1348 |
$\isarkeyword{redo}$, or even $\isarkeyword{kill}$ commands would quickly |
1349 |
result in utter confusion. |
|
8485 | 1350 |
\end{warn} |
1351 |
||
8379 | 1352 |
|
7134 | 1353 |
\subsection{System operations} |
1354 |
||
7167 | 1355 |
\indexisarcmd{cd}\indexisarcmd{pwd}\indexisarcmd{use-thy}\indexisarcmd{use-thy-only} |
1356 |
\indexisarcmd{update-thy}\indexisarcmd{update-thy-only} |
|
7134 | 1357 |
\begin{matharray}{rcl} |
8515 | 1358 |
\isarcmd{cd}^* & : & \isarkeep{\cdot} \\ |
1359 |
\isarcmd{pwd}^* & : & \isarkeep{\cdot} \\ |
|
1360 |
\isarcmd{use_thy}^* & : & \isarkeep{\cdot} \\ |
|
1361 |
\isarcmd{use_thy_only}^* & : & \isarkeep{\cdot} \\ |
|
1362 |
\isarcmd{update_thy}^* & : & \isarkeep{\cdot} \\ |
|
1363 |
\isarcmd{update_thy_only}^* & : & \isarkeep{\cdot} \\ |
|
7134 | 1364 |
\end{matharray} |
1365 |
||
7167 | 1366 |
\begin{descr} |
7134 | 1367 |
\item [$\isarkeyword{cd}~name$] changes the current directory of the Isabelle |
1368 |
process. |
|
1369 |
\item [$\isarkeyword{pwd}~$] prints the current working directory. |
|
7175 | 1370 |
\item [$\isarkeyword{use_thy}$, $\isarkeyword{use_thy_only}$, |
7987 | 1371 |
$\isarkeyword{update_thy}$, $\isarkeyword{update_thy_only}$] load some |
7895 | 1372 |
theory given as $name$ argument. These commands are basically the same as |
7987 | 1373 |
the corresponding ML functions\footnote{The ML versions also change the |
1374 |
implicit theory context to that of the theory loaded.} (see also |
|
1375 |
\cite[\S1,\S6]{isabelle-ref}). Note that both the ML and Isar versions may |
|
1376 |
load new- and old-style theories alike. |
|
7167 | 1377 |
\end{descr} |
7134 | 1378 |
|
7987 | 1379 |
These system commands are scarcely used when working with the Proof~General |
1380 |
interface, since loading of theories is done fully transparently. |
|
7134 | 1381 |
|
8379 | 1382 |
|
7046 | 1383 |
%%% Local Variables: |
1384 |
%%% mode: latex |
|
1385 |
%%% TeX-master: "isar-ref" |
|
1386 |
%%% End: |