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