doc-src/IsarRef/logics.tex
author wenzelm
Wed, 06 Mar 2002 14:48:21 +0100
changeset 13027 ddf235f2384a
parent 13024 0461b281c2b5
child 13039 cfcc1f6f21df
permissions -rw-r--r--
some more stuff; tuned;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     1
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     2
\chapter{Object-logic specific elements}\label{ch:logics}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     3
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     4
\section{General logic setup}\label{sec:object-logic}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     5
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     6
\indexisarcmd{judgment}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     7
\indexisarmeth{atomize}\indexisaratt{atomize}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     8
\indexisaratt{rule-format}\indexisaratt{rulify}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
     9
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    10
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    11
  \isarcmd{judgment} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    12
  atomize & : & \isarmeth \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    13
  atomize & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    14
  rule_format & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    15
  rulify & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    16
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    17
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    18
The very starting point for any Isabelle object-logic is a ``truth judgment''
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    19
that links object-level statements to the meta-logic (with its minimal
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    20
language of $prop$ that covers universal quantification $\Forall$ and
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    21
implication $\Imp$).  Common object-logics are sufficiently expressive to
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    22
\emph{internalize} rule statements over $\Forall$ and $\Imp$ within their own
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    23
language.  This is useful in certain situations where a rule needs to be
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    24
viewed as an atomic statement from the meta-level perspective (e.g.\ $\All x x
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    25
\in A \Imp P(x)$ versus $\forall x \in A. P(x)$).
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    26
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    27
From the following language elements, only the $atomize$ method and
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    28
$rule_format$ attribute are occasionally required by end-users, the rest is
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    29
for those who need to setup their own object-logic.  In the latter case
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    30
existing formulations of Isabelle/FOL or Isabelle/HOL may be taken as
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    31
realistic examples.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    32
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    33
Generic tools may refer to the information provided by object-logic
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    34
declarations internally (e.g.\ locales \S\ref{sec:locale}, or the Classical
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    35
Reasoner \S\ref{sec:classical}).
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    36
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    37
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    38
  'judgment' constdecl
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    39
  ;
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    40
  atomize ('(' 'full' ')')?
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    41
  ;
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    42
  ruleformat ('(' 'noasm' ')')?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    43
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    44
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    45
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    46
\begin{descr}
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    47
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    48
\item [$\isarkeyword{judgment}~c::\sigma~~syn$] declares constant $c$ as the
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    49
  truth judgment of the current object-logic.  Its type $\sigma$ should
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    50
  specify a coercion of the category of object-level propositions to $prop$ of
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    51
  the Pure meta-logic; the mixfix annotation $syn$ would typically just link
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    52
  the object language (internally of syntactic category $logic$) with that of
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    53
  $prop$.  Only one $\isarkeyword{judgment}$ declaration may be given in any
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    54
  theory development.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    55
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    56
\item [$atomize$] (as a method) rewrites any non-atomic premises of a
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    57
  sub-goal, using the meta-level equations declared via $atomize$ (as an
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    58
  attribute) beforehand.  As a result, heavily nested goals become amenable to
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    59
  fundamental operations such as resolution (cf.\ the $rule$ method) and
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    60
  proof-by-assumption (cf.\ $assumption$).  Giving the ``$(full)$'' option
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    61
  here means to turn the subgoal into an object-statement (if possible),
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    62
  including the outermost parameters and assumptions as well.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    63
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    64
  A typical collection of $atomize$ rules for a particular object-logic would
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    65
  provide an internalization for each of the connectives of $\Forall$, $\Imp$,
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    66
  and $\equiv$.  Meta-level conjunction expressed in the manner of minimal
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    67
  higher-order logic as $\All{\PROP\,C} (A \Imp B \Imp \PROP\,C) \Imp PROP\,C$
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    68
  should be covered as well (this is particularly important for locales, see
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    69
  \S\ref{sec:locale}).
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    70
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    71
\item [$rule_format$] rewrites a theorem by the equalities declared as
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    72
  $rulify$ rules in the current object-logic.  By default, the result is fully
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    73
  normalized, including assumptions and conclusions at any depth.  The
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    74
  $no_asm$ option restricts the transformation to the conclusion of a rule.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
    75
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    76
  In common object-logics (HOL, FOL, ZF), the effect of $rule_format$ is to
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    77
  replace (bounded) universal quantification ($\forall$) and implication
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    78
  ($\imp$) by the corresponding rule statements over $\Forall$ and $\Imp$.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    79
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    80
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    81
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    82
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    83
\section{HOL}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    84
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    85
\subsection{Primitive types}\label{sec:typedef}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    86
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    87
\indexisarcmdof{HOL}{typedecl}\indexisarcmdof{HOL}{typedef}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    88
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    89
  \isarcmd{typedecl} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    90
  \isarcmd{typedef} & : & \isartrans{theory}{proof(prove)} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    91
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    92
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    93
\begin{rail}
12879
wenzelm
parents: 12621
diff changeset
    94
  'typedecl' typespec infix?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
    95
  ;
13016
wenzelm
parents: 13014
diff changeset
    96
  'typedef' parname? abstype '=' repset
wenzelm
parents: 13014
diff changeset
    97
  ;
wenzelm
parents: 13014
diff changeset
    98
wenzelm
parents: 13014
diff changeset
    99
  abstype: typespec infix?
wenzelm
parents: 13014
diff changeset
   100
  ;
wenzelm
parents: 13014
diff changeset
   101
  repset: term ('morphisms' name name)?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   102
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   103
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   104
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   105
\begin{descr}
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   106
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   107
\item [$\isarkeyword{typedecl}~(\vec\alpha)t$] is similar to the original
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   108
  $\isarkeyword{typedecl}$ of Isabelle/Pure (see \S\ref{sec:types-pure}), but
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   109
  also declares type arity $t :: (term, \dots, term) term$, making $t$ an
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   110
  actual HOL type constructor.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   111
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   112
\item [$\isarkeyword{typedef}~(\vec\alpha)t = A$] sets up a goal stating
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   113
  non-emptiness of the set $A$.  After finishing the proof, the theory will be
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   114
  augmented by a Gordon/HOL-style type definition, which establishes a
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   115
  bijection between the representing set $A$ and the new type $t$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   116
  
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   117
  Technically, $\isarkeyword{typedef}$ defines both a type $t$ and a set (term
13016
wenzelm
parents: 13014
diff changeset
   118
  constant) of the same name (an alternative base name may be given in
wenzelm
parents: 13014
diff changeset
   119
  parentheses).  The injection from type to set is called $Rep_t$, its inverse
wenzelm
parents: 13014
diff changeset
   120
  $Abs_t$ (this may be changed via an explicit $\isarkeyword{morphisms}$
wenzelm
parents: 13014
diff changeset
   121
  declaration).
wenzelm
parents: 13014
diff changeset
   122
  
wenzelm
parents: 13014
diff changeset
   123
  Theorems $Rep_t$, $Rep_inverse$, and $Abs_inverse$ provide the most basic
wenzelm
parents: 13014
diff changeset
   124
  characterization as a corresponding injection/surjection pair (in both
wenzelm
parents: 13014
diff changeset
   125
  directions).  Rules $Rep_t_inject$ and $Abs_t_inject$ provide a slightly
wenzelm
parents: 13014
diff changeset
   126
  more comfortable view on the injectivity part, suitable for automated proof
wenzelm
parents: 13014
diff changeset
   127
  tools (e.g.\ in $simp$ or $iff$ declarations).  Rules $Rep_t_cases$,
wenzelm
parents: 13014
diff changeset
   128
  $Rep_t_induct$, and $Abs_t_cases$, $Abs_t_induct$ provide alternative views
wenzelm
parents: 13014
diff changeset
   129
  on surjectivity; these are already declared as type or set rules for the
wenzelm
parents: 13014
diff changeset
   130
  generic $cases$ and $induct$ methods.
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   131
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   132
13016
wenzelm
parents: 13014
diff changeset
   133
Raw type declarations are rarely used in practice; the main application is
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   134
with experimental (or even axiomatic!) theory fragments.  Instead of primitive
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   135
HOL type definitions, user-level theories usually refer to higher-level
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   136
packages such as $\isarkeyword{record}$ (see \S\ref{sec:hol-record}) or
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   137
$\isarkeyword{datatype}$ (see \S\ref{sec:hol-datatype}).
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   138
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   139
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   140
\subsection{Adhoc tuples}
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   141
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   142
\indexisarattof{HOL}{split-format}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   143
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   144
  split_format^* & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   145
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   146
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   147
\railalias{splitformat}{split\_format}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   148
\railterm{splitformat}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   149
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   150
\begin{rail}
13027
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   151
  splitformat (((name *) + 'and') | ('(' 'complete' ')'))
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   152
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   153
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   154
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   155
\begin{descr}
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   156
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   157
\item [$split_format~\vec p@1 \dots \vec p@n$] puts expressions of low-level
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   158
  tuple types into canonical form as specified by the arguments given; $\vec
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   159
  p@i$ refers to occurrences in premise $i$ of the rule.  The
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   160
  $split_format~(complete)$ form causes \emph{all} arguments in function
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   161
  applications to be represented canonically according to their tuple type
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   162
  structure.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   163
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   164
  Note that these operations tend to invent funny names for new local
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   165
  parameters to be introduced.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   166
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   167
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   168
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   169
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   170
\section{Records}\label{sec:hol-record}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   171
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   172
In principle, records merely generalize the concept of tuples where components
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   173
may be addressed by labels instead of just position.  The logical
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   174
infrastructure of records in Isabelle/HOL is slightly more advanced, though,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   175
supporting truly extensible record schemes.  This admits operations that are
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   176
polymorphic with respect to record extension, yielding ``object-oriented''
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   177
effects like (single) inheritance.  See also \cite{NaraschewskiW-TPHOLs98} for
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   178
more details on object-oriented verification and record subtyping in HOL.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   179
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   180
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   181
\subsection{Basic concepts}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   182
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   183
Isabelle/HOL supports both \emph{fixed} and \emph{schematic} records at the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   184
level of terms and types.  The notation is as follows:
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   185
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   186
\begin{center}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   187
\begin{tabular}{l|l|l}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   188
  & record terms & record types \\ \hline
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   189
  fixed & $\record{x = a\fs y = b}$ & $\record{x \ty A\fs y \ty B}$ \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   190
  schematic & $\record{x = a\fs y = b\fs \more = m}$ &
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   191
    $\record{x \ty A\fs y \ty B\fs \more \ty M}$ \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   192
\end{tabular}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   193
\end{center}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   194
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   195
\noindent The ASCII representation of $\record{x = a}$ is \texttt{(| x = a |)}.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   196
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   197
A fixed record $\record{x = a\fs y = b}$ has field $x$ of value $a$ and field
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   198
$y$ of value $b$.  The corresponding type is $\record{x \ty A\fs y \ty B}$,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   199
assuming that $a \ty A$ and $b \ty B$.
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   200
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   201
A record scheme like $\record{x = a\fs y = b\fs \more = m}$ contains fields
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   202
$x$ and $y$ as before, but also possibly further fields as indicated by the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   203
``$\more$'' notation (which is actually part of the syntax).  The improper
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   204
field ``$\more$'' of a record scheme is called the \emph{more part}.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   205
Logically it is just a free variable, which is occasionally referred to as
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   206
\emph{row variable} in the literature.  The more part of a record scheme may
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   207
be instantiated by zero or more further components.  For example, the above
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   208
scheme may get instantiated to $\record{x = a\fs y = b\fs z = c\fs \more =
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   209
  m'}$, where $m'$ refers to a different more part.  Fixed records are special
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   210
instances of record schemes, where ``$\more$'' is properly terminated by the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   211
$() :: unit$ element.  Actually, $\record{x = a\fs y = b}$ is just an
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   212
abbreviation for $\record{x = a\fs y = b\fs \more = ()}$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   213
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   214
\medskip
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   215
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   216
Two key observations make extensible records in a simply typed language like
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   217
HOL feasible:
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   218
\begin{enumerate}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   219
\item the more part is internalized, as a free term or type variable,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   220
\item field names are externalized, they cannot be accessed within the logic
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   221
  as first-class values.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   222
\end{enumerate}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   223
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   224
\medskip
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   225
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   226
In Isabelle/HOL record types have to be defined explicitly, fixing their field
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   227
names and types, and their (optional) parent record (see
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   228
{\S}\ref{sec:hol-record-def}).  Afterwards, records may be formed using above
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   229
syntax, while obeying the canonical order of fields as given by their
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   230
declaration.  The record package provides several standard operations like
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   231
selectors and updates (see {\S}\ref{sec:hol-record-ops}).  The common setup
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   232
for various generic proof tools enable succinct reasoning patterns (see
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   233
{\S}\ref{sec:hol-record-thms}).  See also the Isabelle/HOL tutorial
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   234
\cite{isabelle-hol-book} for further instructions on using records in
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   235
practice.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   236
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   237
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   238
\subsection{Record specifications}\label{sec:hol-record-def}
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   239
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   240
\indexisarcmdof{HOL}{record}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   241
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   242
  \isarcmd{record} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   243
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   244
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   245
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   246
  'record' typespec '=' (type '+')? (constdecl +)
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   247
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   248
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   249
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   250
\begin{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   251
\item [$\isarkeyword{record}~(\vec\alpha)t = \tau + \vec c :: \vec\sigma$]
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   252
  defines extensible record type $(\vec\alpha)t$, derived from the optional
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   253
  parent record $\tau$ by adding new field components $\vec c :: \vec\sigma$.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   254
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   255
  The type variables of $\tau$ and $\vec\sigma$ need to be covered by the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   256
  (distinct) parameters $\vec\alpha$.  Type constructor $t$ has to be new,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   257
  while $\tau$ needs to specify an instance of an existing record type.  At
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   258
  least one new field $\vec c$ has to be specified.  Basically, field names
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   259
  need to belong to a unique record.  This is not a real restriction in
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   260
  practice, since fields are qualified by the record name internally.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   261
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   262
  The parent record specification $\tau$ is optional; if omitted $t$ becomes a
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   263
  root record.  The hierarchy of all records declared within a theory context
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   264
  forms a forest structure, i.e.\ a set of trees starting with a root record
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   265
  each.  There is no way to merge multiple parent records!
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   266
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   267
  For convenience, $(\vec\alpha) \, t$ is made a type abbreviation for the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   268
  fixed record type $\record{\vec c \ty \vec\sigma}$, likewise is
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   269
  $(\vec\alpha, \zeta) \, t_scheme$ made an abbreviation for $\record{\vec c
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   270
    \ty \vec\sigma\fs \more \ty \zeta}$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   271
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   272
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   273
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   274
\subsection{Record operations}\label{sec:hol-record-ops}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   275
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   276
Any record definition of the form presented above produces certain standard
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   277
operations.  Selectors and updates are provided for any field, including the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   278
improper one ``$more$''.  There are also cumulative record constructor
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   279
functions.  To simplify the presentation below, we assume for now that
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   280
$(\vec\alpha) \, t$ is a root record with fields $\vec c \ty \vec\sigma$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   281
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   282
\medskip \textbf{Selectors} and \textbf{updates} are available for any field
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   283
(including ``$more$''):
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   284
\begin{matharray}{lll}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   285
  c@i & \ty & \record{\vec c \ty \vec \sigma, \more \ty \zeta} \To \sigma@i \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   286
  c@i_update & \ty & \sigma@i \To \record{\vec c \ty \vec\sigma, \more \ty \zeta} \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   287
    \record{\vec c \ty \vec\sigma, \more \ty \zeta}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   288
\end{matharray}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   289
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   290
There is special syntax for application of updates: $r \, \record{x \asn a}$
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   291
abbreviates term $x_update \, a \, r$.  Further notation for repeated updates
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   292
is also available: $r \, \record{x \asn a} \, \record{y \asn b} \, \record{z
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   293
  \asn c}$ may be written $r \, \record{x \asn a\fs y \asn b\fs z \asn c}$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   294
Note that because of postfix notation the order of fields shown here is
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   295
reverse than in the actual term.  Since repeated updates are just function
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   296
applications, fields may be freely permuted in $\record{x \asn a\fs y \asn
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   297
  b\fs z \asn c}$, as far as logical equality is concerned.  Thus
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   298
commutativity of updates can be proven within the logic for any two fields,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   299
but not as a general theorem: fields are not first-class values.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   300
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   301
\medskip The \textbf{make} operation provides a cumulative record constructor
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   302
functions:
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   303
\begin{matharray}{lll}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   304
  t{\dtt}make & \ty & \vec\sigma \To \record{\vec c \ty \vec \sigma} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   305
\end{matharray}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   306
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   307
\medskip We now reconsider the case of non-root records, which are derived of
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   308
some parent.  In general, the latter may depend on another parent as well,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   309
resulting in a list of \emph{ancestor records}.  Appending the lists of fields
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   310
of all ancestors results in a certain field prefix.  The record package
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   311
automatically takes care of this by lifting operations over this context of
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   312
ancestor fields.  Assuming that $(\vec\alpha) \, t$ has ancestor fields $\vec
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   313
b \ty \vec\rho$, the above record operations will get the following types:
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   314
\begin{matharray}{lll}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   315
  c@i & \ty & \record{\vec b \ty \vec\rho, \vec c \ty \vec\sigma, \more \ty
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   316
    \zeta} \To \sigma@i \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   317
  c@i_update & \ty & \sigma@i \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   318
    \record{\vec b \ty \vec\rho, \vec c \ty \vec\sigma, \more \ty \zeta} \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   319
    \record{\vec b \ty \vec\rho, \vec c \ty \vec\sigma, \more \ty \zeta} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   320
  t{\dtt}make & \ty & \vec\rho \To \vec\sigma \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   321
    \record{\vec b \ty \vec\rho, \vec c \ty \vec \sigma} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   322
\end{matharray}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   323
\noindent
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   324
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   325
\medskip Some further operations address the extension aspect of a derived
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   326
record scheme specifically: $fields$ produces a record fragment consisting of
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   327
exactly the new fields introduced here (the result may serve as a more part
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   328
elsewhere); $extend$ takes a fixed record and adds a given more part;
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   329
$truncate$ restricts a record scheme to a fixed record.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   330
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   331
\begin{matharray}{lll}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   332
  t{\dtt}fields & \ty & \vec\sigma \To \record{\vec c \ty \vec \sigma} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   333
  t{\dtt}extend & \ty & \record{\vec d \ty \vec \rho, \vec c \ty \vec\sigma} \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   334
    \zeta \To \record{\vec d \ty \vec \rho, \vec c \ty \vec\sigma, \more \ty \zeta} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   335
  t{\dtt}truncate & \ty & \record{\vec d \ty \vec \rho, \vec c \ty \vec\sigma, \more \ty \zeta} \To
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   336
    \record{\vec d \ty \vec \rho, \vec c \ty \vec\sigma} \\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   337
\end{matharray}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   338
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   339
\noindent Note that $t{\dtt}make$ and $t{\dtt}fields$ are actually coincide for root records.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   340
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   341
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   342
\subsection{Derived rules and proof tools}\label{sec:hol-record-thms}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   343
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   344
The record package proves several results internally, declaring these facts to
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   345
appropriate proof tools.  This enables users to reason about record structures
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   346
quite comfortably.  Assume that $t$ is a record type as specified above.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   347
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   348
\begin{enumerate}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   349
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   350
\item Standard conversions for selectors or updates applied to record
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   351
  constructor terms are made part of the default Simplifier context; thus
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   352
  proofs by reduction of basic operations merely require the $simp$ method
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   353
  without further arguments.  These rules are available as $t{\dtt}simps$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   354
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   355
\item Selectors applied to updated records are automatically reduced by an
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   356
  internal simplification procedure, which is also part of the default
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   357
  Simplifier context.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   358
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   359
\item Inject equations of a form analogous to $((x, y) = (x', y')) \equiv x=x'
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   360
  \conj y=y'$ are declared to the Simplifier and Classical Reasoner as $iff$
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   361
  rules.  These rules are available as $t{\dtt}iffs$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   362
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   363
\item The introduction rule for record equality analogous to $x~r = x~r' \Imp
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   364
  y~r = y~r' \Imp \dots \Imp r = r'$ is declared to the Simplifier, and as the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   365
  basic rule context as ``$intro?$''.  The rule is called $t{\dtt}equality$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   366
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   367
\item Representations of arbitrary record expressions as canonical constructor
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   368
  terms are provided both in $cases$ and $induct$ format (cf.\ the generic
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   369
  proof methods of the same name, \S\ref{sec:cases-induct}).  Several
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   370
  variations are available, for fixed records, record schemes, more parts etc.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   371
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   372
  The generic proof methods are sufficiently smart to pick the most sensible
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   373
  rule according to the type of the indicated record expression: users just
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   374
  need to apply something like ``$(cases r)$'' to a certain proof problem.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   375
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   376
\item The derived record operations $t{\dtt}make$, $t{\dtt}fields$,
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   377
  $t{\dtt}extend$, $t{\dtt}truncate$ are \emph{not} treated automatically, but
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   378
  usually need to be expanded by hand, using the collective fact
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   379
  $t{\dtt}defs$.
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   380
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   381
\end{enumerate}
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   382
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   383
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   384
\subsection{Datatypes}\label{sec:hol-datatype}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   385
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   386
\indexisarcmdof{HOL}{datatype}\indexisarcmdof{HOL}{rep-datatype}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   387
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   388
  \isarcmd{datatype} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   389
  \isarcmd{rep_datatype} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   390
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   391
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   392
\railalias{repdatatype}{rep\_datatype}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   393
\railterm{repdatatype}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   394
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   395
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   396
  'datatype' (dtspec + 'and')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   397
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   398
  repdatatype (name *) dtrules
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   399
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   400
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   401
  dtspec: parname? typespec infix? '=' (cons + '|')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   402
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   403
  cons: name (type *) mixfix?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   404
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   405
  dtrules: 'distinct' thmrefs 'inject' thmrefs 'induction' thmrefs
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   406
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   407
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   408
\begin{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   409
\item [$\isarkeyword{datatype}$] defines inductive datatypes in HOL.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   410
\item [$\isarkeyword{rep_datatype}$] represents existing types as inductive
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   411
  ones, generating the standard infrastructure of derived concepts (primitive
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   412
  recursion etc.).
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   413
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   414
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   415
The induction and exhaustion theorems generated provide case names according
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   416
to the constructors involved, while parameters are named after the types (see
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   417
also \S\ref{sec:cases-induct}).
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   418
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   419
See \cite{isabelle-HOL} for more details on datatypes, but beware of the
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   420
old-style theory syntax being used there!  Apart from proper proof methods for
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   421
case-analysis and induction, there are also emulations of ML tactics
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   422
\texttt{case_tac} and \texttt{induct_tac} available, see
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   423
\S\ref{sec:hol-induct-tac} or \S\ref{sec:zf-induct-tac}; these admit to refer
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   424
directly to the internal structure of subgoals (including internally bound
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   425
parameters).
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   426
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   427
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   428
\subsection{Recursive functions}\label{sec:recursion}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   429
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   430
\indexisarcmdof{HOL}{primrec}\indexisarcmdof{HOL}{recdef}\indexisarcmdof{HOL}{recdef-tc}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   431
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   432
  \isarcmd{primrec} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   433
  \isarcmd{recdef} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   434
  \isarcmd{recdef_tc}^* & : & \isartrans{theory}{proof(prove)} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   435
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   436
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   437
\railalias{recdefsimp}{recdef\_simp}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   438
\railterm{recdefsimp}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   439
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   440
\railalias{recdefcong}{recdef\_cong}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   441
\railterm{recdefcong}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   442
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   443
\railalias{recdefwf}{recdef\_wf}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   444
\railterm{recdefwf}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   445
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   446
\railalias{recdeftc}{recdef\_tc}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   447
\railterm{recdeftc}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   448
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   449
\begin{rail}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   450
  'primrec' parname? (equation +)
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   451
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   452
  'recdef' ('(' 'permissive' ')')? \\ name term (prop +) hints?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   453
  ;
12879
wenzelm
parents: 12621
diff changeset
   454
  recdeftc thmdecl? tc
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   455
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   456
12879
wenzelm
parents: 12621
diff changeset
   457
  equation: thmdecl? prop
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   458
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   459
  hints: '(' 'hints' (recdefmod *) ')'
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   460
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   461
  recdefmod: ((recdefsimp | recdefcong | recdefwf) (() | 'add' | 'del') ':' thmrefs) | clasimpmod
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   462
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   463
  tc: nameref ('(' nat ')')?
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   464
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   465
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   466
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   467
\begin{descr}
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   468
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   469
\item [$\isarkeyword{primrec}$] defines primitive recursive functions over
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   470
  datatypes, see also \cite{isabelle-HOL}.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   471
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   472
\item [$\isarkeyword{recdef}$] defines general well-founded recursive
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   473
  functions (using the TFL package), see also \cite{isabelle-HOL}.  The
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   474
  $(permissive)$ option tells TFL to recover from failed proof attempts,
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   475
  returning unfinished results.  The $recdef_simp$, $recdef_cong$, and
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   476
  $recdef_wf$ hints refer to auxiliary rules to be used in the internal
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   477
  automated proof process of TFL.  Additional $clasimpmod$ declarations (cf.\ 
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   478
  \S\ref{sec:clasimp}) may be given to tune the context of the Simplifier
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   479
  (cf.\ \S\ref{sec:simplifier}) and Classical reasoner (cf.\ 
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   480
  \S\ref{sec:classical}).
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   481
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   482
\item [$\isarkeyword{recdef_tc}~c~(i)$] recommences the proof for leftover
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   483
  termination condition number $i$ (default $1$) as generated by a
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   484
  $\isarkeyword{recdef}$ definition of constant $c$.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   485
  
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   486
  Note that in most cases, $\isarkeyword{recdef}$ is able to finish its
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   487
  internal proofs without manual intervention.
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   488
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   489
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   490
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   491
Both kinds of recursive definitions accommodate reasoning by induction (cf.\
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   492
\S\ref{sec:cases-induct}): rule $c\mathord{.}induct$ (where $c$ is the name of
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   493
the function definition) refers to a specific induction rule, with parameters
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   494
named according to the user-specified equations.  Case names of
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   495
$\isarkeyword{primrec}$ are that of the datatypes involved, while those of
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   496
$\isarkeyword{recdef}$ are numbered (starting from $1$).
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   497
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   498
The equations provided by these packages may be referred later as theorem list
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   499
$f\mathord.simps$, where $f$ is the (collective) name of the functions
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   500
defined.  Individual equations may be named explicitly as well; note that for
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   501
$\isarkeyword{recdef}$ each specification given by the user may result in
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   502
several theorems.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   503
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   504
\medskip Hints for $\isarkeyword{recdef}$ may be also declared globally, using
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   505
the following attributes.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   506
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   507
\indexisarattof{HOL}{recdef-simp}\indexisarattof{HOL}{recdef-cong}\indexisarattof{HOL}{recdef-wf}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   508
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   509
  recdef_simp & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   510
  recdef_cong & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   511
  recdef_wf & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   512
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   513
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   514
\railalias{recdefsimp}{recdef\_simp}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   515
\railterm{recdefsimp}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   516
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   517
\railalias{recdefcong}{recdef\_cong}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   518
\railterm{recdefcong}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   519
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   520
\railalias{recdefwf}{recdef\_wf}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   521
\railterm{recdefwf}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   522
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   523
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   524
  (recdefsimp | recdefcong | recdefwf) (() | 'add' | 'del')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   525
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   526
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   527
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   528
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   529
\subsection{(Co)Inductive sets}\label{sec:hol-inductive}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   530
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   531
\indexisarcmdof{HOL}{inductive}\indexisarcmdof{HOL}{coinductive}\indexisarattof{HOL}{mono}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   532
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   533
  \isarcmd{inductive} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   534
  \isarcmd{coinductive} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   535
  mono & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   536
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   537
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   538
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   539
  ('inductive' | 'coinductive') sets intros monos?
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   540
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   541
  'mono' (() | 'add' | 'del')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   542
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   543
12879
wenzelm
parents: 12621
diff changeset
   544
  sets: (term +)
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   545
  ;
12879
wenzelm
parents: 12621
diff changeset
   546
  intros: 'intros' (thmdecl? prop +)
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   547
  ;
12879
wenzelm
parents: 12621
diff changeset
   548
  monos: 'monos' thmrefs
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   549
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   550
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   551
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   552
\begin{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   553
\item [$\isarkeyword{inductive}$ and $\isarkeyword{coinductive}$] define
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   554
  (co)inductive sets from the given introduction rules.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   555
\item [$mono$] declares monotonicity rules.  These rule are involved in the
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   556
  automated monotonicity proof of $\isarkeyword{inductive}$.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   557
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   558
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   559
See \cite{isabelle-HOL} for further information on inductive definitions in
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   560
HOL, but note that this covers the old-style theory format.
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   561
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   562
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   563
\subsection{Arithmetic proof support}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   564
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   565
\indexisarmethof{HOL}{arith}\indexisarattof{HOL}{arith-split}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   566
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   567
  arith & : & \isarmeth \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   568
  arith_split & : & \isaratt \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   569
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   570
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   571
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   572
  'arith' '!'?
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   573
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   574
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   575
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   576
The $arith$ method decides linear arithmetic problems (on types $nat$, $int$,
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   577
$real$).  Any current facts are inserted into the goal before running the
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   578
procedure.  The ``!''~argument causes the full context of assumptions to be
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   579
included.  The $arith_split$ attribute declares case split rules to be
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   580
expanded before the arithmetic procedure is invoked.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   581
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   582
Note that a simpler (but faster) version of arithmetic reasoning is already
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   583
performed by the Simplifier.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   584
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   585
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   586
\subsection{Cases and induction: emulating tactic scripts}\label{sec:hol-induct-tac}
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   587
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   588
The following important tactical tools of Isabelle/HOL have been ported to
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   589
Isar.  These should be never used in proper proof texts!
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   590
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   591
\indexisarmethof{HOL}{case-tac}\indexisarmethof{HOL}{induct-tac}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   592
\indexisarmethof{HOL}{ind-cases}\indexisarcmdof{HOL}{inductive-cases}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   593
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   594
  case_tac^* & : & \isarmeth \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   595
  induct_tac^* & : & \isarmeth \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   596
  ind_cases^* & : & \isarmeth \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   597
  \isarcmd{inductive_cases} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   598
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   599
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   600
\railalias{casetac}{case\_tac}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   601
\railterm{casetac}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   602
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   603
\railalias{inducttac}{induct\_tac}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   604
\railterm{inducttac}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   605
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   606
\railalias{indcases}{ind\_cases}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   607
\railterm{indcases}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   608
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   609
\railalias{inductivecases}{inductive\_cases}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   610
\railterm{inductivecases}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   611
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   612
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   613
  casetac goalspec? term rule?
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   614
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   615
  inducttac goalspec? (insts * 'and') rule?
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   616
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   617
  indcases (prop +)
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   618
  ;
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   619
  inductivecases (thmdecl? (prop +) + 'and')
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   620
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   622
  rule: ('rule' ':' thmref)
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   623
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   624
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   625
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   626
\begin{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   627
\item [$case_tac$ and $induct_tac$] admit to reason about inductive datatypes
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   628
  only (unless an alternative rule is given explicitly).  Furthermore,
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   629
  $case_tac$ does a classical case split on booleans; $induct_tac$ allows only
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   630
  variables to be given as instantiation.  These tactic emulations feature
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   631
  both goal addressing and dynamic instantiation.  Note that named rule cases
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   632
  are \emph{not} provided as would be by the proper $induct$ and $cases$ proof
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   633
  methods (see \S\ref{sec:cases-induct}).
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   634
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   635
\item [$ind_cases$ and $\isarkeyword{inductive_cases}$] provide an interface
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   636
  to the \texttt{mk_cases} operation.  Rules are simplified in an unrestricted
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   637
  forward manner.
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   638
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   639
  While $ind_cases$ is a proof method to apply the result immediately as
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   640
  elimination rules, $\isarkeyword{inductive_cases}$ provides case split
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   641
  theorems at the theory level for later use,
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   642
\end{descr}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   643
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   644
13027
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   645
\subsection{Generating executable code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   646
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   647
Isabelle/Pure provides a generic infrastructure to support code generation
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   648
from executable specifications, both functional and relational programs.
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   649
Isabelle/HOL instantiates these mechanisms in a way that is amenable to
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   650
end-user applications.  See \cite{isabelle-HOL} for further information (this
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   651
actually covers the new-style theory format).
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   652
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   653
\indexisarcmd{generate-code}\indexisarcmd{consts-code}\indexisarcmd{types-code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   654
\indexisaratt{code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   655
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   656
\begin{matharray}{rcl}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   657
  \isarcmd{generate_code} & : & \isartrans{theory}{theory} \\
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   658
  \isarcmd{consts_code} & : & \isartrans{theory}{theory} \\
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   659
  \isarcmd{types_code} & : & \isartrans{theory}{theory} \\  
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   660
  code & : & \isaratt \\
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   661
\end{matharray}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   662
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   663
\railalias{generatecode}{generate\_code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   664
\railterm{generatecode}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   665
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   666
\railalias{constscode}{consts\_code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   667
\railterm{constscode}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   668
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   669
\railalias{typescode}{types\_code}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   670
\railterm{typescode}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   671
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   672
\begin{rail}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   673
  generatecode ( () | '(' name ')') ((name '=' term) +)
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   674
  ;
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   675
  constscode (name ('::' type)? template +)
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   676
  ;
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   677
  typescode (name template +)
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   678
  ;
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   679
  template: '(' string ')'
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   680
  ;
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   681
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   682
  'code' (name)?
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   683
  ;
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   684
\end{rail}
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   685
ddf235f2384a some more stuff;
wenzelm
parents: 13024
diff changeset
   686
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   687
\section{HOLCF}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   688
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   689
\subsection{Mixfix syntax for continuous operations}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   690
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   691
\indexisarcmdof{HOLCF}{consts}\indexisarcmdof{HOLCF}{constdefs}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   692
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   693
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   694
  \isarcmd{consts} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   695
  \isarcmd{constdefs} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   696
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   697
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   698
HOLCF provides a separate type for continuous functions $\alpha \rightarrow
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   699
\beta$, with an explicit application operator $f \cdot x$.  Isabelle mixfix
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   700
syntax normally refers directly to the pure meta-level function type $\alpha
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   701
\To \beta$, with application $f\,x$.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   702
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   703
The HOLCF variants of $\CONSTS$ and $\CONSTDEFS$ have the same outer syntax as
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   704
the pure versions (cf.\ \S\ref{sec:consts}).  Internally, declarations
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   705
involving continuous function types are treated specifically, transforming the
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   706
syntax template accordingly and generating syntax translation rules for the
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   707
abstract and concrete representation of application.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   708
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   709
The behavior for plain meta-level function types is unchanged.  Mixed
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   710
continuous and meta-level application is \emph{not} supported.
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   711
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   712
\subsection{Recursive domains}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   713
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   714
\indexisarcmdof{HOLCF}{domain}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   715
\begin{matharray}{rcl}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   716
  \isarcmd{domain} & : & \isartrans{theory}{theory} \\
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   717
\end{matharray}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   718
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   719
\begin{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   720
  'domain' parname? (dmspec + 'and')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   721
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   722
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   723
  dmspec: typespec '=' (cons + '|')
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   724
  ;
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   725
  cons: name (type *) mixfix?
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   726
  ;
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   727
  dtrules: 'distinct' thmrefs 'inject' thmrefs 'induction' thmrefs
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   728
\end{rail}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   729
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   730
Recursive domains in HOLCF are analogous to datatypes in classical HOL (cf.\
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   731
\S\ref{sec:hol-datatype}).  Mutual recursive is supported, but no nesting nor
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   732
arbitrary branching.  Domain constructors may be strict (default) or lazy, the
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   733
latter admits to introduce infinitary objects in the typical LCF manner (e.g.\
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   734
lazy lists).  See also \cite{MuellerNvOS99} for a general discussion of HOLCF
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   735
domains.
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   736
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   737
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   738
\section{ZF}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   739
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   740
\subsection{Type checking}
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   741
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   742
The ZF logic is essentially untyped, so the concept of ``type checking'' is
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   743
performed as logical reasoning about set-membership statements.  A special
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   744
method assists users in this task; a version of this is already declared as a
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   745
``solver'' in the default Simplifier context.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   746
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   747
\indexisarcmd{print-tcset}\indexisaratt{typecheck}\indexisaratt{TC}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   748
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   749
\begin{matharray}{rcl}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   750
  \isarcmd{print_tcset}^* & : & \isarkeep{theory~|~proof} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   751
  typecheck & : & \isarmeth \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   752
  TC & : & \isaratt \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   753
\end{matharray}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   754
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   755
\begin{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   756
  'TC' (() | 'add' | 'del')
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   757
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   758
\end{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   759
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   760
\begin{descr}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   761
  
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   762
\item [$\isarcmd{print_tcset}$] prints the collection of typechecking rules of
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   763
  the current context.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   764
  
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   765
  Note that the component built into the Simplifier only knows about those
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   766
  rules being declared globally in the theory!
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   767
  
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   768
\item [$typecheck$] attempts to solve any pending type-checking problems in
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   769
  subgoals.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   770
  
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   771
\item [$TC$] adds or deletes type-checking rules from the context.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   772
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   773
\end{descr}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   774
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   775
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   776
\subsection{(Co)Inductive sets and datatypes}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   777
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   778
\subsubsection{Set definitions}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   779
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   780
In ZF everything is a set.  The generic inductive package also provides a
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   781
specific view for ``datatype'' specifications.  Coinductive definitions are
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   782
available as well.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   783
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   784
\indexisarcmdof{ZF}{inductive}\indexisarcmdof{ZF}{coinductive}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   785
\indexisarcmdof{ZF}{datatype}\indexisarcmdof{ZF}{codatatype}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   786
\begin{matharray}{rcl}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   787
  \isarcmd{inductive} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   788
  \isarcmd{coinductive} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   789
  \isarcmd{datatype} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   790
  \isarcmd{codatatype} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   791
\end{matharray}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   792
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   793
\railalias{CONDEFS}{con\_defs}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   794
\railterm{CONDEFS}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   795
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   796
\railalias{TYPEINTROS}{type\_intros}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   797
\railterm{TYPEINTROS}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   798
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   799
\railalias{TYPEELIMS}{type\_elims}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   800
\railterm{TYPEELIMS}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   801
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   802
\begin{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   803
  ('inductive' | 'coinductive') domains intros hints
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   804
  ;
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   805
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   806
  domains: 'domains' (term + '+') ('<=' | subseteq) term
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   807
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   808
  intros: 'intros' (thmdecl? prop +)
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   809
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   810
  hints: monos? condefs? typeintros? typeelims?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   811
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   812
  monos: ('monos' thmrefs)?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   813
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   814
  condefs: (CONDEFS thmrefs)?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   815
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   816
  typeintros: (TYPEINTROS thmrefs)?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   817
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   818
  typeelims: (TYPEELIMS thmrefs)?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   819
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   820
\end{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   821
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   822
In the following diagram $monos$, $typeintros$, and $typeelims$ are the same
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   823
as above.
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   824
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   825
\begin{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   826
  ('datatype' | 'codatatype') domain? (dtspec + 'and') hints
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   827
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   828
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   829
  domain: ('<=' | subseteq) term
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   830
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   831
  dtspec: term '=' (con + '|')
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   832
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   833
  con: name ('(' (term ',' +) ')')?  
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   834
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   835
  hints: monos? typeintros? typeelims?
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   836
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   837
\end{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   838
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   839
See \cite{isabelle-ZF} for further information on inductive definitions in
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   840
HOL, but note that this covers the old-style theory format.
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   841
13024
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   842
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   843
\subsubsection{Primitive recursive functions}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   844
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   845
\indexisarcmdof{ZF}{primrec}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   846
\begin{matharray}{rcl}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   847
  \isarcmd{primrec} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   848
\end{matharray}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   849
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   850
\begin{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   851
  'primrec' (thmdecl? prop +)
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   852
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   853
\end{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   854
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   855
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   856
\subsubsection{Cases and induction: emulating tactic scripts}\label{sec:zf-induct-tac}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   857
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   858
The following important tactical tools of Isabelle/ZF have been ported to
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   859
Isar.  These should be never used in proper proof texts!
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   860
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   861
\indexisarmethof{ZF}{case-tac}\indexisarmethof{ZF}{induct-tac}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   862
\indexisarmethof{ZF}{ind-cases}\indexisarcmdof{ZF}{inductive-cases}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   863
\begin{matharray}{rcl}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   864
  case_tac^* & : & \isarmeth \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   865
  induct_tac^* & : & \isarmeth \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   866
  ind_cases^* & : & \isarmeth \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   867
  \isarcmd{inductive_cases} & : & \isartrans{theory}{theory} \\
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   868
\end{matharray}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   869
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   870
\begin{rail}
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   871
  (casetac | inducttac) goalspec? name
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   872
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   873
  indcases (prop +)
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   874
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   875
  inductivecases (thmdecl? (prop +) + 'and')
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   876
  ;
0461b281c2b5 more stuff;
wenzelm
parents: 13016
diff changeset
   877
\end{rail}
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   878
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   879
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   880
%%% Local Variables:
12621
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   881
%%% mode: latex
48cafea0684b next round of updates;
wenzelm
parents:
diff changeset
   882
%%% TeX-master: "isar-ref"
13014
3c1c493e6d93 records from logics-HOL;
wenzelm
parents: 12879
diff changeset
   883
%%% End: