doc-src/IsarRef/generic.tex
author wenzelm
Tue, 05 Mar 2002 18:55:46 +0100
changeset 13024 0461b281c2b5
parent 13015 7c3726a3dbec
child 13027 ddf235f2384a
permissions -rw-r--r--
more stuff;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7135
wenzelm
parents:
diff changeset
     1
7167
wenzelm
parents: 7141
diff changeset
     2
\chapter{Generic Tools and Packages}\label{ch:gen-tools}
wenzelm
parents: 7141
diff changeset
     3
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
     4
\section{Theory specification commands}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
     5
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
     6
\subsection{Axiomatic type classes}\label{sec:axclass}
7167
wenzelm
parents: 7141
diff changeset
     7
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
     8
\indexisarcmd{axclass}\indexisarcmd{instance}\indexisarmeth{intro-classes}
7167
wenzelm
parents: 7141
diff changeset
     9
\begin{matharray}{rcl}
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    10
  \isarcmd{axclass} & : & \isartrans{theory}{theory} \\
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    11
  \isarcmd{instance} & : & \isartrans{theory}{proof(prove)} \\
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    12
  intro_classes & : & \isarmeth \\
7167
wenzelm
parents: 7141
diff changeset
    13
\end{matharray}
wenzelm
parents: 7141
diff changeset
    14
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    15
Axiomatic type classes are provided by Isabelle/Pure as a \emph{definitional}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    16
interface to type classes (cf.~\S\ref{sec:classes}).  Thus any object logic
8547
wenzelm
parents: 8517
diff changeset
    17
may make use of this light-weight mechanism of abstract theories
8901
e591fc327675 cite isabelle-axclass;
wenzelm
parents: 8811
diff changeset
    18
\cite{Wenzel:1997:TPHOL}.  There is also a tutorial on using axiomatic type
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
    19
classes in Isabelle \cite{isabelle-axclass} that is part of the standard
8901
e591fc327675 cite isabelle-axclass;
wenzelm
parents: 8811
diff changeset
    20
Isabelle documentation.
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    21
7167
wenzelm
parents: 7141
diff changeset
    22
\begin{rail}
12879
wenzelm
parents: 12621
diff changeset
    23
  'axclass' classdecl (axmdecl prop +)
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    24
  ;
12879
wenzelm
parents: 12621
diff changeset
    25
  'instance' (nameref ('<' | subseteq) nameref | nameref '::' simplearity)
7167
wenzelm
parents: 7141
diff changeset
    26
  ;
wenzelm
parents: 7141
diff changeset
    27
\end{rail}
wenzelm
parents: 7141
diff changeset
    28
wenzelm
parents: 7141
diff changeset
    29
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
    30
\item [$\AXCLASS~c \subseteq \vec c~~axms$] defines an axiomatic type class as
11100
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    31
  the intersection of existing classes, with additional axioms holding.  Class
10223
wenzelm
parents: 10160
diff changeset
    32
  axioms may not contain more than one type variable.  The class axioms (with
wenzelm
parents: 10160
diff changeset
    33
  implicit sort constraints added) are bound to the given names.  Furthermore
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    34
  a class introduction rule is generated (being bound as $c{.}intro$); this
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    35
  rule is employed by method $intro_classes$ to support instantiation proofs
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    36
  of this class.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    37
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    38
  The ``axioms'' are stored as theorems according to the given name
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    39
  specifications, adding the class name $c$ as name space prefix; these facts
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
    40
  are stored collectively as $c{\dtt}axioms$, too.
10223
wenzelm
parents: 10160
diff changeset
    41
  
11100
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    42
\item [$\INSTANCE~c@1 \subseteq c@2$ and $\INSTANCE~t :: (\vec s)c$] setup a
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    43
  goal stating a class relation or type arity.  The proof would usually
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    44
  proceed by $intro_classes$, and then establish the characteristic theorems
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    45
  of the type classes involved.  After finishing the proof, the theory will be
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    46
  augmented by a type signature declaration corresponding to the resulting
34d58b1818f4 \<subseteq> syntax for classes/classrel/axclass/instance;
wenzelm
parents: 11095
diff changeset
    47
  theorem.
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    48
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
    49
\item [$intro_classes$] repeatedly expands all class introduction rules of
10858
wenzelm
parents: 10741
diff changeset
    50
  this theory.  Note that this method usually needs not be named explicitly,
wenzelm
parents: 10741
diff changeset
    51
  as it is already included in the default proof step (of $\PROOFNAME$,
wenzelm
parents: 10741
diff changeset
    52
  $\BYNAME$, etc.).  In particular, instantiation of trivial (syntactic)
wenzelm
parents: 10741
diff changeset
    53
  classes may be performed by a single ``$\DDOT$'' proof step.
7167
wenzelm
parents: 7141
diff changeset
    54
\end{descr}
wenzelm
parents: 7141
diff changeset
    55
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
    56
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
    57
\subsection{Locales and local contexts}\label{sec:locale}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
    58
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    59
Locales are named local contexts, consisting of a declaration elements that
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    60
are modeled after the Isar proof context (cf.\ \S\ref{sec:proof-context}).
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    61
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    62
\subsubsection{Localized commands}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
    63
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    64
Existing locales may be augmented later on by adding new facts.  Note that the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    65
actual context definition may not be changed!  Several theory commands that
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    66
produce facts in some way are available in ``localized'' versions, referring
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    67
to a named locale instead of the global theory context.
12967
wenzelm
parents: 12879
diff changeset
    68
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    69
\indexouternonterm{locale}
12967
wenzelm
parents: 12879
diff changeset
    70
\begin{rail}
wenzelm
parents: 12879
diff changeset
    71
  locale: '(' 'in' name ')'
wenzelm
parents: 12879
diff changeset
    72
  ;
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    73
\end{rail}
12967
wenzelm
parents: 12879
diff changeset
    74
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    75
Emerging facts of localized commands are stored in two versions, both in the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    76
target locale and the theory (after export).  The latter view produces a
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    77
qualified binding, using the locale name as a name space prefix.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    78
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    79
For example, ``$\LEMMAS~(\IN~loc)~a = \vec b$'' retrieves facts $\vec b$ from
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    80
the locale context of $loc$ and augments its body by an appropriate
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    81
``$\isarkeyword{notes}$'' element (see below).  The exported view of $a$,
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    82
after discharging the locale context, is stored as $loc{.}a$ within the global
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    83
theory.  A localized goal ``$\LEMMANAME~(\IN~loc)~a:~\phi$'' work similarly,
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    84
only that the fact emerges through the subsequent proof,
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    85
which may refer to the full infrastructure of the locale context (including
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    86
local parameters with typing and concrete syntax, assumptions, definitions
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    87
etc.).  Most notably, fact declarations of the locale are active during the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    88
proof, too (e.g.\ local $simp$ rules).
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    89
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    90
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    91
\subsubsection{Locale specifications}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    92
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    93
\indexisarcmd{locale}\indexisarcmd{print-locale}\indexisarcmd{print-locales}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    94
\begin{matharray}{rcl}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    95
  \isarcmd{locale} & : & \isarkeep{theory} \\
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    96
  \isarcmd{print_locale}^* & : & \isarkeep{theory~|~proof} \\
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    97
  \isarcmd{print_locales}^* & : & \isarkeep{theory~|~proof} \\
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    98
\end{matharray}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
    99
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   100
\indexouternonterm{contextexpr}\indexouternonterm{contextelem}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   101
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   102
\railalias{printlocale}{print\_locale}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   103
\railterm{printlocale}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   104
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   105
\begin{rail}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   106
  'locale' name ('=' localeexpr)?
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   107
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   108
  printlocale localeexpr
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   109
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   110
  localeexpr: ((contextexpr '+' (contextelem+)) | contextexpr | (contextelem+))
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   111
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   112
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   113
  contextexpr: nameref | '(' contextexpr ')' |
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   114
  (contextexpr (name+)) | (contextexpr + '+')
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   115
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   116
  contextelem: fixes | assumes | defines | notes | includes
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   117
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   118
  fixes: 'fixes' (name ('::' type)? structmixfix? + 'and')
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   119
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   120
  assumes: 'assumes' (thmdecl? props + 'and')
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   121
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   122
  defines: 'defines' (thmdecl? prop proppat? + 'and')
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   123
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   124
  notes: 'notes' (thmdef? thmrefs + 'and')
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   125
  ;
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   126
  includes: 'includes' contextexpr
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   127
  ;
12967
wenzelm
parents: 12879
diff changeset
   128
\end{rail}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   129
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   130
\begin{descr}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   131
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   132
\item [$\LOCALE~loc~=~import~+~body$] defines new locale $loc$ as a context
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   133
  consisting of a certain view of existing locales ($import$) plus some
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   134
  additional elements ($body$).  Both $import$ and $body$ are optional; the
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   135
  degenerate form $\LOCALE~loc$ defines an empty locale, which may still be
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   136
  useful to collect declarations of facts later on.  Type-inference on locale
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   137
  expressions automatically takes care of the most general typing that the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   138
  combined context elements may acquire.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   139
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   140
  The $import$ consists of a structured context expression, consisting of
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   141
  references to existing locales, renamed contexts, or merged contexts.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   142
  Renaming uses positional notation: $c~\vec x$ means that (a prefix) the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   143
  fixed parameters of context $c$ are named according to $\vec x$; a
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   144
  ``\texttt{_}'' (underscore).\indexisarthm{_@\texttt{_}} means to skip that
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   145
  position.  Also note that concrete syntax only works with the original name.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   146
  Merging proceeds from left-to-right, suppressing any duplicates emerging
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   147
  from different paths through an import hierarchy.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   148
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   149
  The $body$ consists of basic context elements, further context expressions
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   150
  may be included as well.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   151
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   152
  \begin{descr}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   153
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   154
  \item [$\FIXES{~x::\tau~(mx)}$] declares a local parameter of type $\tau$
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   155
    and mixfix annotation $mx$ (both are optional).  The special syntax
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   156
    declaration $(structure)$ means that $x$ may be referenced
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   157
    implicitly in this context. %see also FIXME
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   158
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   159
  \item [$\ASSUMES{a}{\vec\phi}$] introduces local premises, similar to
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   160
    $\ASSUMENAME$ within a proof (cf.\ \S\ref{sec:proof-context}).
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   161
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   162
  \item [$\DEFINES{a}{x \equiv t}$] defines a previously declared parameter.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   163
    This is close to $\DEFNAME$ within a proof (cf.\ 
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   164
    \S\ref{sec:proof-context}), but $\DEFINESNAME$ takes an equational
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   165
    proposition instead of variable-term.  The left-hand side of the equation
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   166
    may have additional arguments, e.g.\ $\DEFINES{}{f~\vec x \equiv t}$.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   167
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   168
  \item [$\NOTES{a}{\vec b}$] reconsiders facts within a local context.  Most
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   169
    notably, this may include arbitrary declarations in any attribute
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   170
    specifications included here, e.g.\ a local $simp$ rule.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   171
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   172
  \item [$\INCLUDES{c}$] copies the specified context in a statically scoped
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   173
    manner.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   174
    
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   175
    In contrast, the initial $import$ specification of a locale expression
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   176
    maintains a dynamic relation to the locales being referenced (benefiting
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   177
    from any later fact declarations in the obvious manner).
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   178
  \end{descr}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   179
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   180
  Note that $\IS{p}$ patterns given in the syntax of $\ASSUMESNAME$ and
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   181
  $\DEFINESNAME$ above is actually illegal in locale definitions.  In the long
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   182
  goal format of \S\ref{sec:goals}, term bindings may be included as expected.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   183
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   184
\item [$\isarkeyword{print_locale}~import~+~body$] prints the specified locale
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   185
  expression in a flattened form.  The notable special case
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   186
  $\isarkeyword{print_locale}~loc$ just prints the contents of the named
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   187
  locale, but keep in mind that type-inference will normalize type variables
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   188
  according to the usual alphabetical order.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   189
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   190
\item [$\isarkeyword{print_locales}$] prints the names of all locales of the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   191
  current theory.
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   192
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   193
\end{descr}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   194
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   195
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   196
\section{Derived proof schemes}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   197
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   198
\subsection{Generalized elimination}\label{sec:obtain}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   199
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   200
\indexisarcmd{obtain}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   201
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   202
  \isarcmd{obtain} & : & \isartrans{proof(state)}{proof(prove)} \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   203
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   204
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   205
Generalized elimination means that additional elements with certain properties
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   206
may introduced in the current context, by virtue of a locally proven
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   207
``soundness statement''.  Technically speaking, the $\OBTAINNAME$ language
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   208
element is like a declaration of $\FIXNAME$ and $\ASSUMENAME$ (see also see
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   209
\S\ref{sec:proof-context}), together with a soundness proof of its additional
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   210
claim.  According to the nature of existential reasoning, assumptions get
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   211
eliminated from any result exported from the context later, provided that the
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   212
corresponding parameters do \emph{not} occur in the conclusion.
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   213
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   214
\begin{rail}
12879
wenzelm
parents: 12621
diff changeset
   215
  'obtain' (vars + 'and') 'where' (props + 'and')
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   216
  ;
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   217
\end{rail}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   218
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   219
$\OBTAINNAME$ is defined as a derived Isar command as follows, where $\vec b$
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   220
shall refer to (optional) facts indicated for forward chaining.
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   221
\begin{matharray}{l}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   222
  \langle facts~\vec b\rangle \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   223
  \OBTAIN{\vec x}{a}{\vec \phi}~~\langle proof\rangle \equiv {} \\[1ex]
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   224
  \quad \BG \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   225
  \qquad \FIX{thesis} \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   226
  \qquad \ASSUME{that~[simp, intro]}{\All{\vec x} \vec\phi \Imp thesis} \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   227
  \qquad \FROM{\vec b}~\HAVE{}{thesis}~~\langle proof\rangle \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   228
  \quad \EN \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   229
  \quad \FIX{\vec x}~\ASSUMENAME^\ast~a\colon~\vec\phi \\
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   230
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   231
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   232
Typically, the soundness proof is relatively straight-forward, often just by
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   233
canonical automated tools such as $\BY{simp}$ (see \S\ref{sec:simp}) or
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   234
$\BY{blast}$ (see \S\ref{sec:classical-auto}).  Accordingly, the ``$that$''
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   235
reduction above is declared as simplification and introduction rule.
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   236
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   237
\medskip
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   238
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   239
In a sense, $\OBTAINNAME$ represents at the level of Isar proofs what would be
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   240
meta-logical existential quantifiers and conjunctions.  This concept has a
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   241
broad range of useful applications, ranging from plain elimination (or even
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   242
introduction) of object-level existentials and conjunctions, to elimination
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   243
over results of symbolic evaluation of recursive definitions, for example.
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   244
Also note that $\OBTAINNAME$ without parameters acts much like $\HAVENAME$,
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   245
where the result is treated as an assumption.
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   246
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   247
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   248
\subsection{Calculational reasoning}\label{sec:calculation}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   249
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   250
\indexisarcmd{also}\indexisarcmd{finally}
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   251
\indexisarcmd{moreover}\indexisarcmd{ultimately}
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   252
\indexisarcmd{print-trans-rules}
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   253
\indexisaratt{trans}\indexisaratt{sym}\indexisaratt{symmetric}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   254
\begin{matharray}{rcl}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   255
  \isarcmd{also} & : & \isartrans{proof(state)}{proof(state)} \\
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   256
  \isarcmd{finally} & : & \isartrans{proof(state)}{proof(chain)} \\
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   257
  \isarcmd{moreover} & : & \isartrans{proof(state)}{proof(state)} \\
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   258
  \isarcmd{ultimately} & : & \isartrans{proof(state)}{proof(chain)} \\
10154
wenzelm
parents: 10031
diff changeset
   259
  \isarcmd{print_trans_rules}^* & : & \isarkeep{theory~|~proof} \\
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   260
  trans & : & \isaratt \\
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   261
  sym & : & \isaratt \\
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   262
  symmetric & : & \isaratt \\
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   263
\end{matharray}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   264
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   265
Calculational proof is forward reasoning with implicit application of
11332
11ab8c8ce694 extended doc for iff attribute
oheimb
parents: 11128
diff changeset
   266
transitivity rules (such those of $=$, $\leq$, $<$).  Isabelle/Isar maintains
7391
b7ca64c8fa64 'iff' attribute;
wenzelm
parents: 7356
diff changeset
   267
an auxiliary register $calculation$\indexisarthm{calculation} for accumulating
7897
7f18f5ffbb92 *** empty log message ***
wenzelm
parents: 7526
diff changeset
   268
results obtained by transitivity composed with the current result.  Command
7f18f5ffbb92 *** empty log message ***
wenzelm
parents: 7526
diff changeset
   269
$\ALSO$ updates $calculation$ involving $this$, while $\FINALLY$ exhibits the
7f18f5ffbb92 *** empty log message ***
wenzelm
parents: 7526
diff changeset
   270
final $calculation$ by forward chaining towards the next goal statement.  Both
7f18f5ffbb92 *** empty log message ***
wenzelm
parents: 7526
diff changeset
   271
commands require valid current facts, i.e.\ may occur only after commands that
7f18f5ffbb92 *** empty log message ***
wenzelm
parents: 7526
diff changeset
   272
produce theorems such as $\ASSUMENAME$, $\NOTENAME$, or some finished proof of
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   273
$\HAVENAME$, $\SHOWNAME$ etc.  The $\MOREOVER$ and $\ULTIMATELY$ commands are
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   274
similar to $\ALSO$ and $\FINALLY$, but only collect further results in
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   275
$calculation$ without applying any rules yet.
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   276
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   277
Also note that the automatic term abbreviation ``$\dots$'' has its canonical
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   278
application with calculational proofs.  It refers to the argument\footnote{The
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   279
  argument of a curried infix expression is its right-hand side.} of the
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   280
preceding statement.
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   281
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   282
Isabelle/Isar calculations are implicitly subject to block structure in the
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   283
sense that new threads of calculational reasoning are commenced for any new
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   284
block (as opened by a local goal, for example).  This means that, apart from
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   285
being able to nest calculations, there is no separate \emph{begin-calculation}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   286
command required.
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   287
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   288
\medskip
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   289
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   290
The Isar calculation proof commands may be defined as
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   291
follows:\footnote{Internal bookkeeping such as proper handling of
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   292
  block-structure has been suppressed.}
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   293
\begin{matharray}{rcl}
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   294
  \ALSO@0 & \equiv & \NOTE{calculation}{this} \\
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   295
  \ALSO@{n+1} & \equiv & \NOTE{calculation}{trans~[OF~calculation~this]} \\[0.5ex]
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   296
  \FINALLY & \equiv & \ALSO~\FROM{calculation} \\
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   297
  \MOREOVER & \equiv & \NOTE{calculation}{calculation~this} \\
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   298
  \ULTIMATELY & \equiv & \MOREOVER~\FROM{calculation} \\
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   299
\end{matharray}
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   300
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   301
\begin{rail}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   302
  ('also' | 'finally') ('(' thmrefs ')')?
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   303
  ;
8507
d22fcea34cb7 untag: only name arg;
wenzelm
parents: 8483
diff changeset
   304
  'trans' (() | 'add' | 'del')
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   305
  ;
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   306
\end{rail}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   307
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   308
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   309
  
8547
wenzelm
parents: 8517
diff changeset
   310
\item [$\ALSO~(\vec a)$] maintains the auxiliary $calculation$ register as
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   311
  follows.  The first occurrence of $\ALSO$ in some calculational thread
7905
wenzelm
parents: 7897
diff changeset
   312
  initializes $calculation$ by $this$. Any subsequent $\ALSO$ on the same
7335
abba35b98892 draft release;
wenzelm
parents: 7321
diff changeset
   313
  level of block-structure updates $calculation$ by some transitivity rule
7458
bb282845ca77 updated;
wenzelm
parents: 7396
diff changeset
   314
  applied to $calculation$ and $this$ (in that order).  Transitivity rules are
11095
2ffaf1e1e101 updated;
wenzelm
parents: 10858
diff changeset
   315
  picked from the current context, unless alternative rules are given as
2ffaf1e1e101 updated;
wenzelm
parents: 10858
diff changeset
   316
  explicit arguments.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   317
8547
wenzelm
parents: 8517
diff changeset
   318
\item [$\FINALLY~(\vec a)$] maintaining $calculation$ in the same way as
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   319
  $\ALSO$, and concludes the current calculational thread.  The final result
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   320
  is exhibited as fact for forward chaining towards the next goal. Basically,
7987
wenzelm
parents: 7981
diff changeset
   321
  $\FINALLY$ just abbreviates $\ALSO~\FROM{calculation}$.  Note that
wenzelm
parents: 7981
diff changeset
   322
  ``$\FINALLY~\SHOW{}{\Var{thesis}}~\DOT$'' and
wenzelm
parents: 7981
diff changeset
   323
  ``$\FINALLY~\HAVE{}{\phi}~\DOT$'' are typical idioms for concluding
wenzelm
parents: 7981
diff changeset
   324
  calculational proofs.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   325
8619
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   326
\item [$\MOREOVER$ and $\ULTIMATELY$] are analogous to $\ALSO$ and $\FINALLY$,
63a0e1502e41 added 'moreover' and 'ultimately';
wenzelm
parents: 8594
diff changeset
   327
  but collect results only, without applying rules.
12879
wenzelm
parents: 12621
diff changeset
   328
  
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   329
\item [$\isarkeyword{print_trans_rules}$] prints the list of transitivity
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   330
  rules (for calculational commands $\ALSO$ and $\FINALLY$) and symmetry rules
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   331
  (for the $symmetric$ operation and single step elimination patters) of the
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   332
  current context.
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   333
  
8547
wenzelm
parents: 8517
diff changeset
   334
\item [$trans$] declares theorems as transitivity rules.
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   335
  
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   336
\item [$sym$] declares symmetry rules.
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   337
  
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   338
\item [$symmetric$] resolves a theorem with some rule declared as $sym$ in the
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   339
  current context.  For example, ``$\ASSUME{[symmetric]}{x = y}$'' produces a
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   340
  swapped fact derived from that assumption.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   341
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   342
  In structured proof texts it is often more appropriate to use an explicit
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   343
  single-step elimination proof, such as ``$\ASSUME{}{x = y}~\HENCE{}{y =
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   344
    x}~\DDOT$''.  Note that the very same rules known to $symmetric$ are
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   345
  declared as $elim$ at the same time.
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   346
\end{descr}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   347
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   348
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   349
\section{Specific proof tools}
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   350
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   351
\subsection{Miscellaneous methods and attributes}\label{sec:misc-meth-att}
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   352
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   353
\indexisarmeth{unfold}\indexisarmeth{fold}\indexisarmeth{insert}
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   354
\indexisarmeth{erule}\indexisarmeth{drule}\indexisarmeth{frule}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   355
\indexisarmeth{fail}\indexisarmeth{succeed}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   356
\begin{matharray}{rcl}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   357
  unfold & : & \isarmeth \\
10741
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   358
  fold & : & \isarmeth \\
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   359
  insert & : & \isarmeth \\[0.5ex]
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   360
  erule^* & : & \isarmeth \\
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   361
  drule^* & : & \isarmeth \\
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   362
  frule^* & : & \isarmeth \\
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   363
  succeed & : & \isarmeth \\
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   364
  fail & : & \isarmeth \\
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   365
\end{matharray}
7135
wenzelm
parents:
diff changeset
   366
wenzelm
parents:
diff changeset
   367
\begin{rail}
10741
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   368
  ('fold' | 'unfold' | 'insert') thmrefs
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   369
  ;
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   370
  ('erule' | 'drule' | 'frule') ('('nat')')? thmrefs
7135
wenzelm
parents:
diff changeset
   371
  ;
wenzelm
parents:
diff changeset
   372
\end{rail}
wenzelm
parents:
diff changeset
   373
7167
wenzelm
parents: 7141
diff changeset
   374
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   375
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   376
\item [$unfold~\vec a$ and $fold~\vec a$] expand (or fold back again) the
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   377
  given meta-level definitions throughout all goals; any chained facts
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   378
  provided are inserted into the goal and subject to rewriting as well.
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   379
  
10741
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   380
\item [$insert~\vec a$] inserts theorems as facts into all goals of the proof
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   381
  state.  Note that current facts indicated for forward chaining are ignored.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   382
8547
wenzelm
parents: 8517
diff changeset
   383
\item [$erule~\vec a$, $drule~\vec a$, and $frule~\vec a$] are similar to the
wenzelm
parents: 8517
diff changeset
   384
  basic $rule$ method (see \S\ref{sec:pure-meth-att}), but apply rules by
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   385
  elim-resolution, destruct-resolution, and forward-resolution, respectively
10741
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   386
  \cite{isabelle-ref}.  The optional natural number argument (default $0$)
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   387
  specifies additional assumption steps to be performed.
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   388
  
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   389
  Note that these methods are improper ones, mainly serving for
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   390
  experimentation and tactic script emulation.  Different modes of basic rule
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   391
  application are usually expressed in Isar at the proof language level,
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   392
  rather than via implicit proof state manipulations.  For example, a proper
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   393
  single-step elimination would be done using the basic $rule$ method, with
e56ac1863f2c 'insert' made proper;
wenzelm
parents: 10627
diff changeset
   394
  forward chaining of current facts.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   395
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   396
\item [$succeed$] yields a single (unchanged) result; it is the identity of
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   397
  the ``\texttt{,}'' method combinator (cf.\ \S\ref{sec:syn-meth}).
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   398
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   399
\item [$fail$] yields an empty result sequence; it is the identity of the
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   400
  ``\texttt{|}'' method combinator (cf.\ \S\ref{sec:syn-meth}).
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   401
7167
wenzelm
parents: 7141
diff changeset
   402
\end{descr}
7135
wenzelm
parents:
diff changeset
   403
10318
wenzelm
parents: 10223
diff changeset
   404
\indexisaratt{tagged}\indexisaratt{untagged}
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   405
\indexisaratt{THEN}\indexisaratt{COMP}
10318
wenzelm
parents: 10223
diff changeset
   406
\indexisaratt{where}\indexisaratt{unfolded}\indexisaratt{folded}
wenzelm
parents: 10223
diff changeset
   407
\indexisaratt{standard}\indexisaratt{elim-format}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   408
\indexisaratt{no-vars}
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   409
\begin{matharray}{rcl}
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   410
  tagged & : & \isaratt \\
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   411
  untagged & : & \isaratt \\[0.5ex]
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   412
  THEN & : & \isaratt \\
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   413
  COMP & : & \isaratt \\[0.5ex]
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   414
  where & : & \isaratt \\[0.5ex]
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   415
  unfolded & : & \isaratt \\
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   416
  folded & : & \isaratt \\[0.5ex]
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   417
  standard & : & \isaratt \\
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9936
diff changeset
   418
  elim_format & : & \isaratt \\
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   419
  no_vars^* & : & \isaratt \\
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   420
\end{matharray}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   421
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   422
\begin{rail}
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   423
  'tagged' (nameref+)
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   424
  ;
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   425
  'untagged' name
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   426
  ;
10154
wenzelm
parents: 10031
diff changeset
   427
  ('THEN' | 'COMP') ('[' nat ']')? thmref
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   428
  ;
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   429
  'where' (name '=' term * 'and')
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   430
  ;
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   431
  ('unfolded' | 'folded') thmrefs
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   432
  ;
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   433
\end{rail}
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   434
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   435
\begin{descr}
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   436
\item [$tagged~name~args$ and $untagged~name$] add and remove $tags$ of some
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   437
  theorem.  Tags may be any list of strings that serve as comment for some
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   438
  tools (e.g.\ $\LEMMANAME$ causes the tag ``$lemma$'' to be added to the
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   439
  result).  The first string is considered the tag name, the rest its
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   440
  arguments.  Note that untag removes any tags of the same name.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   441
\item [$THEN~n~a$ and $COMP~n~a$] compose rules.  $THEN$ resolves with the
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   442
  $n$-th premise of $a$; the $COMP$ version skips the automatic lifting
8547
wenzelm
parents: 8517
diff changeset
   443
  process that is normally intended (cf.\ \texttt{RS} and \texttt{COMP} in
wenzelm
parents: 8517
diff changeset
   444
  \cite[\S5]{isabelle-ref}).
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   445
\item [$where~\vec x = \vec t$] perform named instantiation of schematic
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   446
  variables occurring in a theorem.  Unlike instantiation tactics such as
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   447
  $rule_tac$ (see \S\ref{sec:tactic-commands}), actual schematic variables
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   448
  have to be specified (e.g.\ $\Var{x@3}$).
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   449
\item [$unfolded~\vec a$ and $folded~\vec a$] expand and fold back again the
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   450
  given meta-level definitions throughout a rule.
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   451
\item [$standard$] puts a theorem into the standard form of object-rules, just
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   452
  as the ML function \texttt{standard} (see \cite[\S5]{isabelle-ref}).
9941
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9936
diff changeset
   453
\item [$elim_format$] turns a destruction rule into elimination rule format;
fe05af7ec816 renamed atts: rulify to rule_format, elimify to elim_format;
wenzelm
parents: 9936
diff changeset
   454
  see also the ML function \texttt{make\_elim} (see \cite{isabelle-ref}).
9232
96722b04f2ae added no_vars att;
wenzelm
parents: 9005
diff changeset
   455
\item [$no_vars$] replaces schematic variables by free ones; this is mainly
96722b04f2ae added no_vars att;
wenzelm
parents: 9005
diff changeset
   456
  for tuning output of pretty printed theorems.
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   457
\end{descr}
7135
wenzelm
parents:
diff changeset
   458
wenzelm
parents:
diff changeset
   459
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   460
\subsection{Further tactic emulations}\label{sec:tactics}
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   461
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   462
The following improper proof methods emulate traditional tactics.  These admit
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   463
direct access to the goal state, which is normally considered harmful!  In
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   464
particular, this may involve both numbered goal addressing (default 1), and
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   465
dynamic instantiation within the scope of some subgoal.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   466
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   467
\begin{warn}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   468
  Dynamic instantiations are read and type-checked according to a subgoal of
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   469
  the current dynamic goal state, rather than the static proof context!  In
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   470
  particular, locally fixed variables and term abbreviations may not be
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   471
  included in the term specifications.  Thus schematic variables are left to
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   472
  be solved by unification with certain parts of the subgoal involved.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   473
\end{warn}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   474
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   475
Note that the tactic emulation proof methods in Isabelle/Isar are consistently
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   476
named $foo_tac$.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   477
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   478
\indexisarmeth{rule-tac}\indexisarmeth{erule-tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   479
\indexisarmeth{drule-tac}\indexisarmeth{frule-tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   480
\indexisarmeth{cut-tac}\indexisarmeth{thin-tac}
9642
d8d1f70024bd fixed indexing;
wenzelm
parents: 9614
diff changeset
   481
\indexisarmeth{subgoal-tac}\indexisarmeth{rename-tac}
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   482
\indexisarmeth{rotate-tac}\indexisarmeth{tactic}
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   483
\begin{matharray}{rcl}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   484
  rule_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   485
  erule_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   486
  drule_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   487
  frule_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   488
  cut_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   489
  thin_tac^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   490
  subgoal_tac^* & : & \isarmeth \\
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   491
  rename_tac^* & : & \isarmeth \\
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   492
  rotate_tac^* & : & \isarmeth \\
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   493
  tactic^* & : & \isarmeth \\
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   494
\end{matharray}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   495
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   496
\railalias{ruletac}{rule\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   497
\railterm{ruletac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   498
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   499
\railalias{eruletac}{erule\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   500
\railterm{eruletac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   501
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   502
\railalias{druletac}{drule\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   503
\railterm{druletac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   504
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   505
\railalias{fruletac}{frule\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   506
\railterm{fruletac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   507
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   508
\railalias{cuttac}{cut\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   509
\railterm{cuttac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   510
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   511
\railalias{thintac}{thin\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   512
\railterm{thintac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   513
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   514
\railalias{subgoaltac}{subgoal\_tac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   515
\railterm{subgoaltac}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   516
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   517
\railalias{renametac}{rename\_tac}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   518
\railterm{renametac}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   519
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   520
\railalias{rotatetac}{rotate\_tac}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   521
\railterm{rotatetac}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   522
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   523
\begin{rail}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   524
  ( ruletac | eruletac | druletac | fruletac | cuttac | thintac ) goalspec?
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   525
  ( insts thmref | thmrefs )
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   526
  ;
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   527
  subgoaltac goalspec? (prop +)
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   528
  ;
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   529
  renametac goalspec? (name +)
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   530
  ;
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   531
  rotatetac goalspec? int?
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   532
  ;
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   533
  'tactic' text
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   534
  ;
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   535
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   536
  insts: ((name '=' term) + 'and') 'in'
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   537
  ;
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   538
\end{rail}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   539
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   540
\begin{descr}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   541
\item [$rule_tac$ etc.] do resolution of rules with explicit instantiation.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   542
  This works the same way as the ML tactics \texttt{res_inst_tac} etc. (see
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   543
  \cite[\S3]{isabelle-ref}).
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   544
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   545
  Note that multiple rules may be only given there is no instantiation.  Then
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   546
  $rule_tac$ is the same as \texttt{resolve_tac} in ML (see
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   547
  \cite[\S3]{isabelle-ref}).
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   548
\item [$cut_tac$] inserts facts into the proof state as assumption of a
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   549
  subgoal, see also \texttt{cut_facts_tac} in \cite[\S3]{isabelle-ref}.  Note
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   550
  that the scope of schematic variables is spread over the main goal statement.
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   551
  Instantiations may be given as well, see also ML tactic
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   552
  \texttt{cut_inst_tac} in \cite[\S3]{isabelle-ref}.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   553
\item [$thin_tac~\phi$] deletes the specified assumption from a subgoal; note
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   554
  that $\phi$ may contain schematic variables.  See also \texttt{thin_tac} in
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   555
  \cite[\S3]{isabelle-ref}.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   556
\item [$subgoal_tac~\phi$] adds $\phi$ as an assumption to a subgoal.  See
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   557
  also \texttt{subgoal_tac} and \texttt{subgoals_tac} in
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   558
  \cite[\S3]{isabelle-ref}.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   559
\item [$rename_tac~\vec x$] renames parameters of a goal according to the list
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   560
  $\vec x$, which refers to the \emph{suffix} of variables.
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   561
\item [$rotate_tac~n$] rotates the assumptions of a goal by $n$ positions:
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   562
  from right to left if $n$ is positive, and from left to right if $n$ is
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   563
  negative; the default value is $1$.  See also \texttt{rotate_tac} in
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   564
  \cite[\S3]{isabelle-ref}.
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   565
\item [$tactic~text$] produces a proof method from any ML text of type
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   566
  \texttt{tactic}.  Apart from the usual ML environment and the current
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   567
  implicit theory context, the ML code may refer to the following locally
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   568
  bound values:
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   569
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   570
{\footnotesize\begin{verbatim}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   571
val ctxt  : Proof.context
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   572
val facts : thm list
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   573
val thm   : string -> thm
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   574
val thms  : string -> thm list
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   575
\end{verbatim}}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   576
  Here \texttt{ctxt} refers to the current proof context, \texttt{facts}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   577
  indicates any current facts for forward-chaining, and
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   578
  \texttt{thm}~/~\texttt{thms} retrieve named facts (including global
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   579
  theorems) from the context.
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   580
\end{descr}
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   581
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   582
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   583
\subsection{The Simplifier}\label{sec:simplifier}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   584
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   585
\subsubsection{Simplification methods}\label{sec:simp}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   586
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   587
\indexisarmeth{simp}\indexisarmeth{simp-all}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   588
\begin{matharray}{rcl}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   589
  simp & : & \isarmeth \\
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   590
  simp_all & : & \isarmeth \\
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   591
\end{matharray}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   592
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   593
\railalias{simpall}{simp\_all}
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   594
\railterm{simpall}
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   595
8704
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   596
\railalias{noasm}{no\_asm}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   597
\railterm{noasm}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   598
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   599
\railalias{noasmsimp}{no\_asm\_simp}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   600
\railterm{noasmsimp}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   601
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   602
\railalias{noasmuse}{no\_asm\_use}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   603
\railterm{noasmuse}
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   604
11128
48c63b87566e index mod syntax;
wenzelm
parents: 11100
diff changeset
   605
\indexouternonterm{simpmod}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   606
\begin{rail}
8706
wenzelm
parents: 8704
diff changeset
   607
  ('simp' | simpall) ('!' ?) opt? (simpmod * )
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   608
  ;
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   609
8811
6ec0c8f9d68d improved syntax of method options (no_asm) etc;
wenzelm
parents: 8706
diff changeset
   610
  opt: '(' (noasm | noasmsimp | noasmuse) ')'
8704
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   611
  ;
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   612
  simpmod: ('add' | 'del' | 'only' | 'cong' (() | 'add' | 'del') |
9847
32ce11c3f6b1 added 'iff' modifier;
wenzelm
parents: 9799
diff changeset
   613
    'split' (() | 'add' | 'del')) ':' thmrefs
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   614
  ;
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   615
\end{rail}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   616
7321
wenzelm
parents: 7319
diff changeset
   617
\begin{descr}
13015
wenzelm
parents: 12976
diff changeset
   618
8547
wenzelm
parents: 8517
diff changeset
   619
\item [$simp$] invokes Isabelle's simplifier, after declaring additional rules
8594
d2e2a3df6871 rail token vs. terminal;
wenzelm
parents: 8547
diff changeset
   620
  according to the arguments given.  Note that the \railtterm{only} modifier
8547
wenzelm
parents: 8517
diff changeset
   621
  first removes all other rewrite rules, congruences, and looper tactics
8594
d2e2a3df6871 rail token vs. terminal;
wenzelm
parents: 8547
diff changeset
   622
  (including splits), and then behaves like \railtterm{add}.
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   623
  
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   624
  \medskip The \railtterm{cong} modifiers add or delete Simplifier congruence
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   625
  rules (see also \cite{isabelle-ref}), the default is to add.
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   626
  
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   627
  \medskip The \railtterm{split} modifiers add or delete rules for the
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   628
  Splitter (see also \cite{isabelle-ref}), the default is to add.  This works
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   629
  only if the Simplifier method has been properly setup to include the
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   630
  Splitter (all major object logics such HOL, HOLCF, FOL, ZF do this already).
13015
wenzelm
parents: 12976
diff changeset
   631
  
wenzelm
parents: 12976
diff changeset
   632
\item [$simp_all$] is similar to $simp$, but acts on all goals (backwards from
wenzelm
parents: 12976
diff changeset
   633
  the last to the first one).
wenzelm
parents: 12976
diff changeset
   634
7321
wenzelm
parents: 7319
diff changeset
   635
\end{descr}
wenzelm
parents: 7319
diff changeset
   636
13015
wenzelm
parents: 12976
diff changeset
   637
By default the Simplifier methods take local assumptions fully into account,
wenzelm
parents: 12976
diff changeset
   638
using equational assumptions in the subsequent normalization process, or
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   639
simplifying assumptions themselves (cf.\ \texttt{asm_full_simp_tac} in
13015
wenzelm
parents: 12976
diff changeset
   640
\cite[\S10]{isabelle-ref}).  In structured proofs this is usually quite well
wenzelm
parents: 12976
diff changeset
   641
behaved in practice: just the local premises of the actual goal are involved,
wenzelm
parents: 12976
diff changeset
   642
additional facts may inserted via explicit forward-chaining (using $\THEN$,
wenzelm
parents: 12976
diff changeset
   643
$\FROMNAME$ etc.).  The full context of assumptions is only included if the
wenzelm
parents: 12976
diff changeset
   644
``$!$'' (bang) argument is given, which should be used with some care, though.
7321
wenzelm
parents: 7319
diff changeset
   645
13015
wenzelm
parents: 12976
diff changeset
   646
Additional Simplifier options may be specified to tune the behavior further
wenzelm
parents: 12976
diff changeset
   647
(mostly for unstructured scripts with many accidental local facts): $(no_asm)$
wenzelm
parents: 12976
diff changeset
   648
means assumptions are ignored completely (cf.\ \texttt{simp_tac}),
wenzelm
parents: 12976
diff changeset
   649
$(no_asm_simp)$ means assumptions are used in the simplification of the
wenzelm
parents: 12976
diff changeset
   650
conclusion but are not themselves simplified (cf.\ \texttt{asm_simp_tac}), and
wenzelm
parents: 12976
diff changeset
   651
$(no_asm_use)$ means assumptions are simplified but are not used in the
wenzelm
parents: 12976
diff changeset
   652
simplification of each other or the conclusion (cf.  \texttt{full_simp_tac}).
8704
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   653
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   654
\medskip
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   655
f76f41f24c44 Simplifier options;
wenzelm
parents: 8667
diff changeset
   656
The Splitter package is usually configured to work as part of the Simplifier.
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   657
The effect of repeatedly applying \texttt{split_tac} can be simulated by
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   658
$(simp~only\colon~split\colon~\vec a)$.  There is also a separate $split$
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   659
method available for single-step case splitting, see \S\ref{sec:basic-eq}.
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   660
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   661
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   662
\subsubsection{Declaring rules}
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   663
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8638
diff changeset
   664
\indexisarcmd{print-simpset}
8638
21cb46716f32 added 'cong' att;
wenzelm
parents: 8619
diff changeset
   665
\indexisaratt{simp}\indexisaratt{split}\indexisaratt{cong}
7321
wenzelm
parents: 7319
diff changeset
   666
\begin{matharray}{rcl}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   667
  \isarcmd{print_simpset}^* & : & \isarkeep{theory~|~proof} \\
7321
wenzelm
parents: 7319
diff changeset
   668
  simp & : & \isaratt \\
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   669
  cong & : & \isaratt \\
8483
b437907f9b26 Named local contexts (cases);
wenzelm
parents: 8203
diff changeset
   670
  split & : & \isaratt \\
7321
wenzelm
parents: 7319
diff changeset
   671
\end{matharray}
wenzelm
parents: 7319
diff changeset
   672
wenzelm
parents: 7319
diff changeset
   673
\begin{rail}
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   674
  ('simp' | 'cong' | 'split') (() | 'add' | 'del')
7321
wenzelm
parents: 7319
diff changeset
   675
  ;
wenzelm
parents: 7319
diff changeset
   676
\end{rail}
wenzelm
parents: 7319
diff changeset
   677
wenzelm
parents: 7319
diff changeset
   678
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   679
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   680
\item [$\isarcmd{print_simpset}$] prints the collection of rules declared to
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   681
  the Simplifier, which is also known as ``simpset'' internally
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8638
diff changeset
   682
  \cite{isabelle-ref}.  This is a diagnostic command; $undo$ does not apply.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   683
8547
wenzelm
parents: 8517
diff changeset
   684
\item [$simp$] declares simplification rules.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   685
8638
21cb46716f32 added 'cong' att;
wenzelm
parents: 8619
diff changeset
   686
\item [$cong$] declares congruence rules.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   687
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   688
\item [$split$] declares case split rules.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   689
7321
wenzelm
parents: 7319
diff changeset
   690
\end{descr}
7319
wenzelm
parents: 7315
diff changeset
   691
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   692
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   693
\subsubsection{Forward simplification}
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   694
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   695
\indexisaratt{simplified}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   696
\begin{matharray}{rcl}
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   697
  simplified & : & \isaratt \\
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   698
\end{matharray}
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   699
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   700
\begin{rail}
13015
wenzelm
parents: 12976
diff changeset
   701
  'simplified' opt? thmrefs?
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   702
  ;
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   703
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   704
  opt: '(' (noasm | noasmsimp | noasmuse) ')'
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   705
  ;
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   706
\end{rail}
7905
wenzelm
parents: 7897
diff changeset
   707
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   708
\begin{descr}
13015
wenzelm
parents: 12976
diff changeset
   709
  
wenzelm
parents: 12976
diff changeset
   710
\item [$simplified~\vec a$] causes a theorem to be simplified, either by
wenzelm
parents: 12976
diff changeset
   711
  exactly the specified rules $\vec a$, or the implicit Simplifier context if
wenzelm
parents: 12976
diff changeset
   712
  no arguments are given.  The result is fully simplified by default,
wenzelm
parents: 12976
diff changeset
   713
  including assumptions and conclusion; the options $no_asm$ etc.\ tune the
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   714
  Simplifier in the same way as the for the $simp$ method (see
13015
wenzelm
parents: 12976
diff changeset
   715
  \S\ref{sec:simp}).
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   716
  
13015
wenzelm
parents: 12976
diff changeset
   717
  Note that forward simplification restricts the simplifier to its most basic
wenzelm
parents: 12976
diff changeset
   718
  operation of term rewriting; solver and looper tactics \cite{isabelle-ref}
wenzelm
parents: 12976
diff changeset
   719
  are \emph{not} involved here.  The $simplified$ attribute should be only
wenzelm
parents: 12976
diff changeset
   720
  rarely required under normal circumstances.
wenzelm
parents: 12976
diff changeset
   721
9905
14a71104a498 improved att names;
wenzelm
parents: 9847
diff changeset
   722
\end{descr}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   723
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   724
13015
wenzelm
parents: 12976
diff changeset
   725
\subsubsection{Low-level equational reasoning}\label{sec:basic-eq}
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   726
12976
5cfe2941a5db contexts, locales, sym(metric);
wenzelm
parents: 12967
diff changeset
   727
\indexisarmeth{subst}\indexisarmeth{hypsubst}\indexisarmeth{split}
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   728
\begin{matharray}{rcl}
13015
wenzelm
parents: 12976
diff changeset
   729
  subst^* & : & \isarmeth \\
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   730
  hypsubst^* & : & \isarmeth \\
13015
wenzelm
parents: 12976
diff changeset
   731
  split^* & : & \isarmeth \\
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   732
\end{matharray}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   733
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   734
\begin{rail}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   735
  'subst' thmref
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   736
  ;
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   737
  'split' ('(' 'asm' ')')? thmrefs
9703
bf65780eed02 added 'split' method;
wenzelm
parents: 9642
diff changeset
   738
  ;
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   739
\end{rail}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   740
13015
wenzelm
parents: 12976
diff changeset
   741
These methods provide low-level facilities for equational reasoning that are
wenzelm
parents: 12976
diff changeset
   742
intended for specialized applications only.  Normally, single step
wenzelm
parents: 12976
diff changeset
   743
calculations would be performed in a structured text (see also
wenzelm
parents: 12976
diff changeset
   744
\S\ref{sec:calculation}), while the Simplifier methods provide the canonical
wenzelm
parents: 12976
diff changeset
   745
way for automated normalization (see \S\ref{sec:simplifier}).
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   746
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   747
\begin{descr}
13015
wenzelm
parents: 12976
diff changeset
   748
  
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   749
\item [$subst~thm$] performs a single substitution step using rule $thm$,
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   750
  which may be either a meta or object equality.
13015
wenzelm
parents: 12976
diff changeset
   751
  
wenzelm
parents: 12976
diff changeset
   752
\item [$hypsubst$] performs substitution using some assumption.  Note that
wenzelm
parents: 12976
diff changeset
   753
  this only works for equations of the form $x = t$ where $x$ is a free or
wenzelm
parents: 12976
diff changeset
   754
  bound variable!
wenzelm
parents: 12976
diff changeset
   755
  
9703
bf65780eed02 added 'split' method;
wenzelm
parents: 9642
diff changeset
   756
\item [$split~thms$] performs single-step case splitting using rules $thms$.
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   757
  By default, splitting is performed in the conclusion of a goal; the $asm$
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   758
  option indicates to operate on assumptions instead.
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   759
  
9703
bf65780eed02 added 'split' method;
wenzelm
parents: 9642
diff changeset
   760
  Note that the $simp$ method already involves repeated application of split
bf65780eed02 added 'split' method;
wenzelm
parents: 9642
diff changeset
   761
  rules as declared in the current context (see \S\ref{sec:simp}).
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   762
\end{descr}
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   763
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   764
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   765
\subsection{The Classical Reasoner}\label{sec:classical}
7135
wenzelm
parents:
diff changeset
   766
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   767
\subsubsection{Basic methods}\label{sec:classical-basic}
7321
wenzelm
parents: 7319
diff changeset
   768
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   769
\indexisarmeth{rule}\indexisarmeth{default}\indexisarmeth{contradiction}
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   770
\indexisarmeth{intro}\indexisarmeth{elim}
7321
wenzelm
parents: 7319
diff changeset
   771
\begin{matharray}{rcl}
wenzelm
parents: 7319
diff changeset
   772
  rule & : & \isarmeth \\
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   773
  contradiction & : & \isarmeth \\
7321
wenzelm
parents: 7319
diff changeset
   774
  intro & : & \isarmeth \\
wenzelm
parents: 7319
diff changeset
   775
  elim & : & \isarmeth \\
wenzelm
parents: 7319
diff changeset
   776
\end{matharray}
wenzelm
parents: 7319
diff changeset
   777
wenzelm
parents: 7319
diff changeset
   778
\begin{rail}
8547
wenzelm
parents: 8517
diff changeset
   779
  ('rule' | 'intro' | 'elim') thmrefs?
7321
wenzelm
parents: 7319
diff changeset
   780
  ;
wenzelm
parents: 7319
diff changeset
   781
\end{rail}
wenzelm
parents: 7319
diff changeset
   782
wenzelm
parents: 7319
diff changeset
   783
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   784
  
7466
7df66ce6508a updated;
wenzelm
parents: 7458
diff changeset
   785
\item [$rule$] as offered by the classical reasoner is a refinement over the
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   786
  primitive one (see \S\ref{sec:pure-meth-att}).  Both versions essentially
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   787
  work the same, but the classical version observes the classical rule context
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   788
  in addition to the Isabelle/Pure one.
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   789
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   790
  The library of common object logics (HOL, ZF, etc.) usually declare a rich
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   791
  collection of classical rules (even if these perfectly OK from the
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   792
  intuitionistic viewpoint), but only few declarations to the rule context of
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   793
  Isabelle/Pure (\S\ref{sec:pure-meth-att}).
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   794
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   795
\item [$contradiction$] solves some goal by contradiction, deriving any result
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   796
  from both $\neg A$ and $A$.  Facts, which are guaranteed to participate, may
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   797
  appear in either order.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   798
7466
7df66ce6508a updated;
wenzelm
parents: 7458
diff changeset
   799
\item [$intro$ and $elim$] repeatedly refine some goal by intro- or
7905
wenzelm
parents: 7897
diff changeset
   800
  elim-resolution, after having inserted any facts.  Omitting the arguments
8547
wenzelm
parents: 8517
diff changeset
   801
  refers to any suitable rules declared in the context, otherwise only the
wenzelm
parents: 8517
diff changeset
   802
  explicitly given ones may be applied.  The latter form admits better control
wenzelm
parents: 8517
diff changeset
   803
  of what actually happens, thus it is very appropriate as an initial method
wenzelm
parents: 8517
diff changeset
   804
  for $\PROOFNAME$ that splits up certain connectives of the goal, before
wenzelm
parents: 8517
diff changeset
   805
  entering the actual sub-proof.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   806
  
7321
wenzelm
parents: 7319
diff changeset
   807
\end{descr}
wenzelm
parents: 7319
diff changeset
   808
wenzelm
parents: 7319
diff changeset
   809
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   810
\subsubsection{Automated methods}\label{sec:classical-auto}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   811
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   812
\indexisarmeth{blast}\indexisarmeth{fast}\indexisarmeth{slow}
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   813
\indexisarmeth{best}\indexisarmeth{safe}\indexisarmeth{clarify}
7321
wenzelm
parents: 7319
diff changeset
   814
\begin{matharray}{rcl}
9780
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   815
  blast & : & \isarmeth \\
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   816
  fast & : & \isarmeth \\
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   817
  slow & : & \isarmeth \\
9780
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   818
  best & : & \isarmeth \\
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   819
  safe & : & \isarmeth \\
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   820
  clarify & : & \isarmeth \\
7321
wenzelm
parents: 7319
diff changeset
   821
\end{matharray}
wenzelm
parents: 7319
diff changeset
   822
11128
48c63b87566e index mod syntax;
wenzelm
parents: 11100
diff changeset
   823
\indexouternonterm{clamod}
7321
wenzelm
parents: 7319
diff changeset
   824
\begin{rail}
7905
wenzelm
parents: 7897
diff changeset
   825
  'blast' ('!' ?) nat? (clamod * )
7321
wenzelm
parents: 7319
diff changeset
   826
  ;
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   827
  ('fast' | 'slow' | 'best' | 'safe' | 'clarify') ('!' ?) (clamod * )
7321
wenzelm
parents: 7319
diff changeset
   828
  ;
wenzelm
parents: 7319
diff changeset
   829
9408
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   830
  clamod: (('intro' | 'elim' | 'dest') ('!' | () | '?') | 'del') ':' thmrefs
7321
wenzelm
parents: 7319
diff changeset
   831
  ;
wenzelm
parents: 7319
diff changeset
   832
\end{rail}
wenzelm
parents: 7319
diff changeset
   833
wenzelm
parents: 7319
diff changeset
   834
\begin{descr}
wenzelm
parents: 7319
diff changeset
   835
\item [$blast$] refers to the classical tableau prover (see \texttt{blast_tac}
7335
abba35b98892 draft release;
wenzelm
parents: 7321
diff changeset
   836
  in \cite[\S11]{isabelle-ref}).  The optional argument specifies a
10858
wenzelm
parents: 10741
diff changeset
   837
  user-supplied search bound (default 20).
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   838
\item [$fast$, $slow$, $best$, $safe$, and $clarify$] refer to the generic
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   839
  classical reasoner.  See \texttt{fast_tac}, \texttt{slow_tac},
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   840
  \texttt{best_tac}, \texttt{safe_tac}, and \texttt{clarify_tac} in
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   841
  \cite[\S11]{isabelle-ref} for more information.
7321
wenzelm
parents: 7319
diff changeset
   842
\end{descr}
wenzelm
parents: 7319
diff changeset
   843
wenzelm
parents: 7319
diff changeset
   844
Any of above methods support additional modifiers of the context of classical
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   845
rules.  Their semantics is analogous to the attributes given in
8547
wenzelm
parents: 8517
diff changeset
   846
\S\ref{sec:classical-mod}.  Facts provided by forward chaining are
wenzelm
parents: 8517
diff changeset
   847
inserted\footnote{These methods usually cannot make proper use of actual rules
wenzelm
parents: 8517
diff changeset
   848
  inserted that way, though.} into the goal before doing the search.  The
wenzelm
parents: 8517
diff changeset
   849
``!''~argument causes the full context of assumptions to be included as well.
wenzelm
parents: 8517
diff changeset
   850
This is slightly less hazardous than for the Simplifier (see
wenzelm
parents: 8517
diff changeset
   851
\S\ref{sec:simp}).
7321
wenzelm
parents: 7319
diff changeset
   852
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   853
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   854
\subsubsection{Combined automated methods}\label{sec:clasimp}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   855
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   856
\indexisarmeth{auto}\indexisarmeth{force}\indexisarmeth{clarsimp}
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   857
\indexisarmeth{fastsimp}\indexisarmeth{slowsimp}\indexisarmeth{bestsimp}
7321
wenzelm
parents: 7319
diff changeset
   858
\begin{matharray}{rcl}
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   859
  auto & : & \isarmeth \\
7321
wenzelm
parents: 7319
diff changeset
   860
  force & : & \isarmeth \\
9438
6131037f8a11 removed slow, slow_best methods;
wenzelm
parents: 9408
diff changeset
   861
  clarsimp & : & \isarmeth \\
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   862
  fastsimp & : & \isarmeth \\
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   863
  slowsimp & : & \isarmeth \\
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   864
  bestsimp & : & \isarmeth \\
7321
wenzelm
parents: 7319
diff changeset
   865
\end{matharray}
wenzelm
parents: 7319
diff changeset
   866
11128
48c63b87566e index mod syntax;
wenzelm
parents: 11100
diff changeset
   867
\indexouternonterm{clasimpmod}
7321
wenzelm
parents: 7319
diff changeset
   868
\begin{rail}
9780
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   869
  'auto' '!'? (nat nat)? (clasimpmod * )
d25d6a977ea6 added 'safe' method;
wenzelm
parents: 9711
diff changeset
   870
  ;
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   871
  ('force' | 'clarsimp' | 'fastsimp' | 'slowsimp' | 'bestsimp') '!'? (clasimpmod * )
7321
wenzelm
parents: 7319
diff changeset
   872
  ;
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   873
9711
75df6a20b0b3 'cong' modifiers;
wenzelm
parents: 9703
diff changeset
   874
  clasimpmod: ('simp' (() | 'add' | 'del' | 'only') |
10031
12fd0fcf755a attribute / modifier 'iff': support "?" mode;
wenzelm
parents: 9941
diff changeset
   875
    ('cong' | 'split') (() | 'add' | 'del') |
12fd0fcf755a attribute / modifier 'iff': support "?" mode;
wenzelm
parents: 9941
diff changeset
   876
    'iff' (((() | 'add') '?'?) | 'del') |
9408
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   877
    (('intro' | 'elim' | 'dest') ('!' | () | '?') | 'del')) ':' thmrefs
7321
wenzelm
parents: 7319
diff changeset
   878
\end{rail}
7315
76a39a3784b5 checkpoint;
wenzelm
parents: 7175
diff changeset
   879
7321
wenzelm
parents: 7319
diff changeset
   880
\begin{descr}
9799
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   881
\item [$auto$, $force$, $clarsimp$, $fastsimp$, $slowsimp$, and $bestsimp$]
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   882
  provide access to Isabelle's combined simplification and classical reasoning
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   883
  tactics.  These correspond to \texttt{auto_tac}, \texttt{force_tac},
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   884
  \texttt{clarsimp_tac}, and Classical Reasoner tactics with the Simplifier
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   885
  added as wrapper, see \cite[\S11]{isabelle-ref} for more information.  The
038b018f86f5 'split' method: '(asm)' option;
wenzelm
parents: 9780
diff changeset
   886
  modifier arguments correspond to those given in \S\ref{sec:simp} and
9606
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   887
  \S\ref{sec:classical-auto}.  Just note that the ones related to the
1bf495402ae9 moved tactic emulation methods here;
wenzelm
parents: 9480
diff changeset
   888
  Simplifier are prefixed by \railtterm{simp} here.
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
   889
7987
wenzelm
parents: 7981
diff changeset
   890
  Facts provided by forward chaining are inserted into the goal before doing
wenzelm
parents: 7981
diff changeset
   891
  the search.  The ``!''~argument causes the full context of assumptions to be
wenzelm
parents: 7981
diff changeset
   892
  included as well.
7321
wenzelm
parents: 7319
diff changeset
   893
\end{descr}
wenzelm
parents: 7319
diff changeset
   894
7987
wenzelm
parents: 7981
diff changeset
   895
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   896
\subsubsection{Declaring rules}\label{sec:classical-mod}
7135
wenzelm
parents:
diff changeset
   897
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8638
diff changeset
   898
\indexisarcmd{print-claset}
7391
b7ca64c8fa64 'iff' attribute;
wenzelm
parents: 7356
diff changeset
   899
\indexisaratt{intro}\indexisaratt{elim}\indexisaratt{dest}
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   900
\indexisaratt{iff}\indexisaratt{rule}
7321
wenzelm
parents: 7319
diff changeset
   901
\begin{matharray}{rcl}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   902
  \isarcmd{print_claset}^* & : & \isarkeep{theory~|~proof} \\
7321
wenzelm
parents: 7319
diff changeset
   903
  intro & : & \isaratt \\
wenzelm
parents: 7319
diff changeset
   904
  elim & : & \isaratt \\
wenzelm
parents: 7319
diff changeset
   905
  dest & : & \isaratt \\
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   906
  rule & : & \isaratt \\
7391
b7ca64c8fa64 'iff' attribute;
wenzelm
parents: 7356
diff changeset
   907
  iff & : & \isaratt \\
7321
wenzelm
parents: 7319
diff changeset
   908
\end{matharray}
7135
wenzelm
parents:
diff changeset
   909
7321
wenzelm
parents: 7319
diff changeset
   910
\begin{rail}
9408
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   911
  ('intro' | 'elim' | 'dest') ('!' | () | '?')
7321
wenzelm
parents: 7319
diff changeset
   912
  ;
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   913
  'rule' 'del'
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   914
  ;
10031
12fd0fcf755a attribute / modifier 'iff': support "?" mode;
wenzelm
parents: 9941
diff changeset
   915
  'iff' (((() | 'add') '?'?) | 'del')
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   916
  ;
7321
wenzelm
parents: 7319
diff changeset
   917
\end{rail}
7135
wenzelm
parents:
diff changeset
   918
7321
wenzelm
parents: 7319
diff changeset
   919
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   920
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   921
\item [$\isarcmd{print_claset}$] prints the collection of rules declared to
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   922
  the Classical Reasoner, which is also known as ``simpset'' internally
8667
4230d17073ea print_simpset / print_claset command;
wenzelm
parents: 8638
diff changeset
   923
  \cite{isabelle-ref}.  This is a diagnostic command; $undo$ does not apply.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   924
8517
062e6cd78534 obtain;
wenzelm
parents: 8507
diff changeset
   925
\item [$intro$, $elim$, and $dest$] declare introduction, elimination, and
11332
11ab8c8ce694 extended doc for iff attribute
oheimb
parents: 11128
diff changeset
   926
  destruction rules, respectively.  By default, rules are considered as
9408
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   927
  \emph{unsafe} (i.e.\ not applied blindly without backtracking), while a
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   928
  single ``!'' classifies as \emph{safe}, and ``?'' as \emph{extra} (i.e.\ not
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   929
  applied in the search-oriented automated methods, but only in single-step
d3d56e1d2ec1 classical atts now intro! / intro / intro?;
wenzelm
parents: 9232
diff changeset
   930
  methods such as $rule$).
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   931
11332
11ab8c8ce694 extended doc for iff attribute
oheimb
parents: 11128
diff changeset
   932
\item [$rule~del$] deletes introduction, elimination, or destruction rules from
9936
f080397656d8 renamed "delrule" to "rule del";
wenzelm
parents: 9905
diff changeset
   933
  the context.
10031
12fd0fcf755a attribute / modifier 'iff': support "?" mode;
wenzelm
parents: 9941
diff changeset
   934
  
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   935
\item [$iff$] declares a logical equivalences to the Simplifier and the
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   936
  Classical reasoner at the same time.  Non-conditional rules result in a
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   937
  ``safe'' introduction and elimination pair; conditional ones are considered
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   938
  ``unsafe''.  Rules with negative conclusion are automatically inverted
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   939
  (using $\neg$-elimination).
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   940
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   941
  The ``?'' version of $iff$ declares rules to the Pure context only, and
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   942
  omits the Simplifier declaration.  Thus the declaration does not have any
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   943
  effect on automated proof tools, but only on the single-step $rule$ method
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   944
  (see \S\ref{sec:misc-meth-att}).
7321
wenzelm
parents: 7319
diff changeset
   945
\end{descr}
7135
wenzelm
parents:
diff changeset
   946
8203
2fcc6017cb72 intro/elim/dest attributes: changed ! / !! flags to ? / ??;
wenzelm
parents: 8195
diff changeset
   947
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   948
\subsection{Proof by cases and induction}\label{sec:cases-induct}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   949
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
   950
\subsubsection{Rule contexts}\label{sec:rule-cases}
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   951
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   952
\indexisarcmd{case}\indexisarcmd{print-cases}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   953
\indexisaratt{case-names}\indexisaratt{params}\indexisaratt{consumes}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   954
\begin{matharray}{rcl}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   955
  \isarcmd{case} & : & \isartrans{proof(state)}{proof(state)} \\
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   956
  \isarcmd{print_cases}^* & : & \isarkeep{proof} \\
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   957
  case_names & : & \isaratt \\
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   958
  params & : & \isaratt \\
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   959
  consumes & : & \isaratt \\
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   960
\end{matharray}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   961
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   962
Basically, Isar proof contexts are built up explicitly using commands like
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   963
$\FIXNAME$, $\ASSUMENAME$ etc.\ (see \S\ref{sec:proof-context}).  In typical
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   964
verification tasks this can become hard to manage, though.  In particular, a
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   965
large number of local contexts may emerge from case analysis or induction over
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   966
inductive sets and types.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   967
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   968
\medskip
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   969
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   970
The $\CASENAME$ command provides a shorthand to refer to certain parts of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   971
logical context symbolically.  Proof methods may provide an environment of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   972
named ``cases'' of the form $c\colon \vec x, \vec \phi$.  Then the effect of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   973
$\CASE{c}$ is exactly the same as $\FIX{\vec x}~\ASSUME{c}{\vec\phi}$.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   974
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   975
FIXME
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   976
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   977
It is important to note that $\CASENAME$ does \emph{not} provide any means to
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   978
peek at the current goal state, which is treated as strictly non-observable in
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   979
Isar!  Instead, the cases considered here usually emerge in a canonical way
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   980
from certain pieces of specification that appear in the theory somewhere else
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   981
(e.g.\ in an inductive definition, or recursive function).
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   982
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   983
FIXME
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   984
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   985
\medskip
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   986
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   987
Named cases may be exhibited in the current proof context only if both the
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   988
proof method and the rules involved support this.  Case names and parameters
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   989
of basic rules may be declared by hand as well, by using appropriate
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   990
attributes.  Thus variant versions of rules that have been derived manually
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   991
may be used in advanced case analysis later.
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
   992
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   993
\railalias{casenames}{case\_names}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   994
\railterm{casenames}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   995
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   996
\begin{rail}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   997
  'case' caseref | ('(' caseref ((name | underscore) +) ')')
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
   998
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
   999
  caseref: nameref attributes?
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1000
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1001
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1002
  casenames (name + )
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1003
  ;
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1004
  'params' ((name * ) + 'and')
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1005
  ;
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1006
  'consumes' nat?
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1007
  ;
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1008
\end{rail}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1009
%FIXME bug in rail
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1010
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1011
\begin{descr}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1012
\item [$\CASE{c}$] invokes a named local context $c\colon \vec x, \vec \phi$,
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1013
  as provided by an appropriate proof method (such as $cases$ and $induct$,
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1014
  see \S\ref{sec:cases-induct-meth}).  The command $\CASE{c}$ abbreviates
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1015
  $\FIX{\vec x}~\ASSUME{c}{\vec\phi}$.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1016
\item [$\isarkeyword{print_cases}$] prints all local contexts of the current
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1017
  state, using Isar proof language notation.  This is a diagnostic command;
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1018
  $undo$ does not apply.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1019
\item [$case_names~\vec c$] declares names for the local contexts of premises
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1020
  of some theorem; $\vec c$ refers to the \emph{suffix} of the list of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1021
  premises.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1022
\item [$params~\vec p@1 \dots \vec p@n$] renames the innermost parameters of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1023
  premises $1, \dots, n$ of some theorem.  An empty list of names may be given
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1024
  to skip positions, leaving the present parameters unchanged.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1025
  
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1026
  Note that the default usage of case rules does \emph{not} directly expose
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1027
  parameters to the proof context (see also \S\ref{sec:cases-induct-meth}).
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1028
\item [$consumes~n$] declares the number of ``major premises'' of a rule,
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1029
  i.e.\ the number of facts to be consumed when it is applied by an
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1030
  appropriate proof method (cf.\ \S\ref{sec:cases-induct-meth}).  The default
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1031
  value of $consumes$ is $n = 1$, which is appropriate for the usual kind of
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1032
  cases and induction rules for inductive sets (cf.\ 
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1033
  \S\ref{sec:hol-inductive}).  Rules without any $consumes$ declaration given
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1034
  are treated as if $consumes~0$ had been specified.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1035
  
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1036
  Note that explicit $consumes$ declarations are only rarely needed; this is
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1037
  already taken care of automatically by the higher-level $cases$ and $induct$
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1038
  declarations, see also \S\ref{sec:cases-induct-att}.
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1039
\end{descr}
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1040
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1041
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
  1042
\subsubsection{Proof methods}\label{sec:cases-induct-meth}
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1043
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1044
\indexisarmeth{cases}\indexisarmeth{induct}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1045
\begin{matharray}{rcl}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1046
  cases & : & \isarmeth \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1047
  induct & : & \isarmeth \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1048
\end{matharray}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1049
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1050
The $cases$ and $induct$ methods provide a uniform interface to case analysis
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1051
and induction over datatypes, inductive sets, and recursive functions.  The
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1052
corresponding rules may be specified and instantiated in a casual manner.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1053
Furthermore, these methods provide named local contexts that may be invoked
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1054
via the $\CASENAME$ proof command within the subsequent proof text (cf.\ 
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1055
\S\ref{sec:rule-cases}).  This accommodates compact proof texts even when
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1056
reasoning about large specifications.
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1057
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1058
Note that the full spectrum of this generic functionality is currently only
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1059
supported by Isabelle/HOL, when used in conjunction with advanced definitional
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1060
packages (see especially \S\ref{sec:hol-datatype} and
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1061
\S\ref{sec:hol-inductive}).
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1062
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1063
\begin{rail}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1064
  'cases' spec
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1065
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1066
  'induct' spec
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1067
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1068
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1069
  spec: open? args rule? params?
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1070
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1071
  open: '(' 'open' ')'
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1072
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1073
  args: (insts * 'and') 
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1074
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1075
  rule: ('type' | 'set') ':' nameref | 'rule' ':' thmref
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1076
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1077
  params: 'of' ':' insts
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1078
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1079
\end{rail}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1080
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1081
\begin{descr}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1082
\item [$cases~insts~R~ps$] applies method $rule$ with an appropriate case
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1083
  distinction theorem, instantiated to the subjects $insts$.  Symbolic case
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1084
  names are bound according to the rule's local contexts.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1085
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1086
  The rule is determined as follows, according to the facts and arguments
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1087
  passed to the $cases$ method:
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1088
  \begin{matharray}{llll}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1089
    \Text{facts}    &       & \Text{arguments} & \Text{rule} \\\hline
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1090
                    & cases &           & \Text{classical case split} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1091
                    & cases & t         & \Text{datatype exhaustion (type of $t$)} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1092
    \edrv a \in A   & cases & \dots     & \Text{inductive set elimination (of $A$)} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1093
    \dots           & cases & \dots ~ R & \Text{explicit rule $R$} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1094
  \end{matharray}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1095
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1096
  Several instantiations may be given, referring to the \emph{suffix} of
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1097
  premises of the case rule; within each premise, the \emph{prefix} of
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1098
  variables is instantiated.  In most situations, only a single term needs to
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1099
  be specified; this refers to the first variable of the last premise (it is
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1100
  usually the same for all cases).
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1101
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1102
  Additional parameters may be specified as $ps$; these are applied after the
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1103
  primary instantiation in the same manner as by the $of$ attribute (cf.\ 
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1104
  \S\ref{sec:pure-meth-att}).  This feature is rarely needed in practice; a
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1105
  typical application would be to specify additional arguments for rules
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1106
  stemming from parameterized inductive definitions (see also
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1107
  \S\ref{sec:hol-inductive}).
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1108
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1109
  The $open$ option causes the parameters of the new local contexts to be
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1110
  exposed to the current proof context.  Thus local variables stemming from
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1111
  distant parts of the theory development may be introduced in an implicit
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1112
  manner, which can be quite confusing to the reader.  Furthermore, this
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1113
  option may cause unwanted hiding of existing local variables, resulting in
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1114
  less robust proof texts.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1115
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1116
\item [$induct~insts~R~ps$] is analogous to the $cases$ method, but refers to
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1117
  induction rules, which are determined as follows:
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1118
  \begin{matharray}{llll}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1119
    \Text{facts}    &        & \Text{arguments} & \Text{rule} \\\hline
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1120
                    & induct & P ~ x ~ \dots & \Text{datatype induction (type of $x$)} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1121
    \edrv x \in A   & induct & \dots         & \Text{set induction (of $A$)} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1122
    \dots           & induct & \dots ~ R     & \Text{explicit rule $R$} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1123
  \end{matharray}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1124
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1125
  Several instantiations may be given, each referring to some part of a mutual
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1126
  inductive definition or datatype --- only related partial induction rules
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1127
  may be used together, though.  Any of the lists of terms $P, x, \dots$
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1128
  refers to the \emph{suffix} of variables present in the induction rule.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1129
  This enables the writer to specify only induction variables, or both
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1130
  predicates and variables, for example.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1131
  
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1132
  Additional parameters (including the $open$ option) may be given in the same
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1133
  way as for $cases$, see above.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1134
\end{descr}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1135
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1136
Above methods produce named local contexts (cf.\ \S\ref{sec:rule-cases}), as
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1137
determined by the instantiated rule \emph{before} it has been applied to the
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1138
internal proof state.\footnote{As a general principle, Isar proof text may
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1139
  never refer to parts of proof states directly.} Thus proper use of symbolic
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1140
cases usually require the rule to be instantiated fully, as far as the
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1141
emerging local contexts and subgoals are concerned.  In particular, for
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1142
induction both the predicates and variables have to be specified.  Otherwise
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1143
the $\CASENAME$ command would refuse to invoke cases containing schematic
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1144
variables.  Furthermore the resulting local goal statement is bound to the
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1145
term variable $\Var{case}$\indexisarvar{case} --- for each case where it is
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1146
fully specified.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1147
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1148
The $\isarkeyword{print_cases}$ command (\S\ref{sec:rule-cases}) prints all
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1149
named cases present in the current proof state.
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1150
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1151
\medskip
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1152
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1153
It is important to note that there is a fundamental difference of the $cases$
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1154
and $induct$ methods in handling of non-atomic goal statements: $cases$ just
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1155
applies a certain rule in backward fashion, splitting the result into new
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1156
goals with the local contexts being augmented in a purely monotonic manner.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1157
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1158
In contrast, $induct$ passes the full goal statement through the ``recursive''
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1159
course involved in the induction.  Thus the original statement is basically
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1160
replaced by separate copies, corresponding to the induction hypotheses and
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1161
conclusion; the original goal context is no longer available.  This behavior
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1162
allows \emph{strengthened induction predicates} to be expressed concisely as
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1163
meta-level rule statements, i.e.\ $\All{\vec x} \vec\phi \Imp \psi$ to
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1164
indicate ``variable'' parameters $\vec x$ and ``recursive'' assumptions
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1165
$\vec\phi$.  Also note that local definitions may be expressed as $\All{\vec
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1166
  x} n \equiv t[\vec x] \Imp \phi[n]$, with induction over $n$.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1167
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1168
\medskip
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1169
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1170
Facts presented to either method are consumed according to the number of
12618
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1171
``major premises'' of the rule involved (see also \S\ref{sec:cases-induct}),
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1172
which is usually $0$ for plain cases and induction rules of datatypes etc.\ 
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1173
and $1$ for rules of inductive sets and the like.  The remaining facts are
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1174
inserted into the goal verbatim before the actual $cases$ or $induct$ rule is
43a97a2155d0 first stage of major update;
wenzelm
parents: 11691
diff changeset
  1175
applied (thus facts may be even passed through an induction).
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1176
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1177
Note that whenever facts are present, the default rule selection scheme would
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1178
provide a ``set'' rule only, with the first fact consumed and the rest
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1179
inserted into the goal.  In order to pass all facts into a ``type'' rule
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1180
instead, one would have to specify this explicitly, e.g.\ by appending
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1181
``$type: name$'' to the method argument.
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1182
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1183
12621
48cafea0684b next round of updates;
wenzelm
parents: 12618
diff changeset
  1184
\subsubsection{Declaring rules}\label{sec:cases-induct-att}
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1185
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1186
\indexisarcmd{print-induct-rules}\indexisaratt{cases}\indexisaratt{induct}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1187
\begin{matharray}{rcl}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1188
  \isarcmd{print_induct_rules}^* & : & \isarkeep{theory~|~proof} \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1189
  cases & : & \isaratt \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1190
  induct & : & \isaratt \\
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1191
\end{matharray}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1192
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1193
\begin{rail}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1194
  'cases' spec
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1195
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1196
  'induct' spec
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1197
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1198
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1199
  spec: ('type' | 'set') ':' nameref
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1200
  ;
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1201
\end{rail}
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1202
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1203
\begin{descr}
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1204
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1205
\item [$\isarkeyword{print_induct_rules}$] prints cases and induct rules for
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1206
  sets and types of the current context.
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1207
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1208
\item [$cases$ and $induct$] (as attributes) augment the corresponding context
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1209
  of rules for reasoning about inductive sets and types, using the
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1210
  corresponding methods of the same name.  Certain definitional packages of
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1211
  object-logics usually declare emerging cases and induction rules as
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1212
  expected, so users rarely need to intervene.
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1213
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1214
  Manual rule declarations usually include the the $case_names$ and $ps$
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1215
  attributes to adjust names of cases and parameters of a rule (see
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1216
  \S\ref{sec:rule-cases}); the $consumes$ declaration is taken care of
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1217
  automatically: $consumes~0$ is specified for ``type'' rules and $consumes~1$
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1218
  for ``set'' rules.
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1219
  
0461b281c2b5 more stuff;
wenzelm
parents: 13015
diff changeset
  1220
\end{descr}
11691
fc9bd420162c induct/cases made generic, removed simplified/stripped options;
wenzelm
parents: 11469
diff changeset
  1221
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
  1222
%%% Local Variables:
7135
wenzelm
parents:
diff changeset
  1223
%%% mode: latex
wenzelm
parents:
diff changeset
  1224
%%% TeX-master: "isar-ref"
9614
8ca1fc75230e renamed 'RS' to 'THEN';
wenzelm
parents: 9606
diff changeset
  1225
%%% End: