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