doc-src/IsarRef/Thy/HOL_Specific.thy
author blanchet
Tue, 23 Feb 2010 14:11:36 +0100
changeset 35331 450ab945c451
parent 34172 4301e9ea1c54
child 35351 7425aece4ee3
permissions -rw-r--r--
document Quickcheck's "no_assms" option
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26840
ec46381f149d added logic-specific sessions;
wenzelm
parents:
diff changeset
     1
theory HOL_Specific
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
     2
imports Main
26840
ec46381f149d added logic-specific sessions;
wenzelm
parents:
diff changeset
     3
begin
ec46381f149d added logic-specific sessions;
wenzelm
parents:
diff changeset
     4
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
     5
chapter {* Isabelle/HOL \label{ch:hol} *}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
     6
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
     7
section {* Primitive types \label{sec:hol-typedef} *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
     8
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
     9
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    10
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
    11
    @{command_def (HOL) "typedecl"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
    12
    @{command_def (HOL) "typedef"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    13
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    14
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    15
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    16
    'typedecl' typespec infix?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    17
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    18
    'typedef' altname? abstype '=' repset
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    19
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    20
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    21
    altname: '(' (name | 'open' | 'open' name) ')'
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    22
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    23
    abstype: typespec infix?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    24
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    25
    repset: term ('morphisms' name name)?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    26
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    27
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    28
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    29
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    30
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    31
  \item @{command (HOL) "typedecl"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t"} is similar
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    32
  to the original @{command "typedecl"} of Isabelle/Pure (see
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    33
  \secref{sec:types-pure}), but also declares type arity @{text "t ::
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    34
  (type, \<dots>, type) type"}, making @{text t} an actual HOL type
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    35
  constructor.  %FIXME check, update
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    36
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    37
  \item @{command (HOL) "typedef"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t = A"} sets up
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    38
  a goal stating non-emptiness of the set @{text A}.  After finishing
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    39
  the proof, the theory will be augmented by a Gordon/HOL-style type
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    40
  definition, which establishes a bijection between the representing
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    41
  set @{text A} and the new type @{text t}.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    42
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    43
  Technically, @{command (HOL) "typedef"} defines both a type @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    44
  t} and a set (term constant) of the same name (an alternative base
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    45
  name may be given in parentheses).  The injection from type to set
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    46
  is called @{text Rep_t}, its inverse @{text Abs_t} (this may be
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    47
  changed via an explicit @{keyword (HOL) "morphisms"} declaration).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    48
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    49
  Theorems @{text Rep_t}, @{text Rep_t_inverse}, and @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    50
  Abs_t_inverse} provide the most basic characterization as a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    51
  corresponding injection/surjection pair (in both directions).  Rules
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    52
  @{text Rep_t_inject} and @{text Abs_t_inject} provide a slightly
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    53
  more convenient view on the injectivity part, suitable for automated
26894
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26860
diff changeset
    54
  proof tools (e.g.\ in @{attribute simp} or @{attribute iff}
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26860
diff changeset
    55
  declarations).  Rules @{text Rep_t_cases}/@{text Rep_t_induct}, and
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26860
diff changeset
    56
  @{text Abs_t_cases}/@{text Abs_t_induct} provide alternative views
1120f6cc10b0 proper checking of various Isar elements;
wenzelm
parents: 26860
diff changeset
    57
  on surjectivity; these are already declared as set or type rules for
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    58
  the generic @{method cases} and @{method induct} methods.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    59
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    60
  An alternative name may be specified in parentheses; the default is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    61
  to use @{text t} as indicated before.  The ``@{text "(open)"}''
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    62
  declaration suppresses a separate constant definition for the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    63
  representing set.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    64
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    65
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    66
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    67
  Note that raw type declarations are rarely used in practice; the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    68
  main application is with experimental (or even axiomatic!) theory
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    69
  fragments.  Instead of primitive HOL type definitions, user-level
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    70
  theories usually refer to higher-level packages such as @{command
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    71
  (HOL) "record"} (see \secref{sec:hol-record}) or @{command (HOL)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    72
  "datatype"} (see \secref{sec:hol-datatype}).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    73
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    74
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    75
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    76
section {* Adhoc tuples *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    77
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    78
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    79
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
    80
    @{attribute (HOL) split_format}@{text "\<^sup>*"} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    81
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    82
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    83
  \begin{rail}
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
    84
    'split\_format' ((( name * ) + 'and') | ('(' 'complete' ')'))
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    85
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    86
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    87
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    88
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    89
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    90
  \item @{attribute (HOL) split_format}~@{text "p\<^sub>1 \<dots> p\<^sub>m \<AND> \<dots>
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    91
  \<AND> q\<^sub>1 \<dots> q\<^sub>n"} puts expressions of low-level tuple types into
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    92
  canonical form as specified by the arguments given; the @{text i}-th
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    93
  collection of arguments refers to occurrences in premise @{text i}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    94
  of the rule.  The ``@{text "(complete)"}'' option causes \emph{all}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    95
  arguments in function applications to be represented canonically
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
    96
  according to their tuple type structure.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    97
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    98
  Note that these operations tend to invent funny names for new local
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
    99
  parameters to be introduced.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   100
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   101
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   102
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   103
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   104
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   105
section {* Records \label{sec:hol-record} *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   106
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   107
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   108
  In principle, records merely generalize the concept of tuples, where
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   109
  components may be addressed by labels instead of just position.  The
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   110
  logical infrastructure of records in Isabelle/HOL is slightly more
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   111
  advanced, though, supporting truly extensible record schemes.  This
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   112
  admits operations that are polymorphic with respect to record
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   113
  extension, yielding ``object-oriented'' effects like (single)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   114
  inheritance.  See also \cite{NaraschewskiW-TPHOLs98} for more
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   115
  details on object-oriented verification and record subtyping in HOL.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   116
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   117
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   118
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   119
subsection {* Basic concepts *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   120
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   121
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   122
  Isabelle/HOL supports both \emph{fixed} and \emph{schematic} records
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   123
  at the level of terms and types.  The notation is as follows:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   124
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   125
  \begin{center}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   126
  \begin{tabular}{l|l|l}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   127
    & record terms & record types \\ \hline
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   128
    fixed & @{text "\<lparr>x = a, y = b\<rparr>"} & @{text "\<lparr>x :: A, y :: B\<rparr>"} \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   129
    schematic & @{text "\<lparr>x = a, y = b, \<dots> = m\<rparr>"} &
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   130
      @{text "\<lparr>x :: A, y :: B, \<dots> :: M\<rparr>"} \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   131
  \end{tabular}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   132
  \end{center}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   133
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   134
  \noindent The ASCII representation of @{text "\<lparr>x = a\<rparr>"} is @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   135
  "(| x = a |)"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   136
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   137
  A fixed record @{text "\<lparr>x = a, y = b\<rparr>"} has field @{text x} of value
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   138
  @{text a} and field @{text y} of value @{text b}.  The corresponding
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   139
  type is @{text "\<lparr>x :: A, y :: B\<rparr>"}, assuming that @{text "a :: A"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   140
  and @{text "b :: B"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   141
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   142
  A record scheme like @{text "\<lparr>x = a, y = b, \<dots> = m\<rparr>"} contains fields
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   143
  @{text x} and @{text y} as before, but also possibly further fields
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   144
  as indicated by the ``@{text "\<dots>"}'' notation (which is actually part
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   145
  of the syntax).  The improper field ``@{text "\<dots>"}'' of a record
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   146
  scheme is called the \emph{more part}.  Logically it is just a free
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   147
  variable, which is occasionally referred to as ``row variable'' in
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   148
  the literature.  The more part of a record scheme may be
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   149
  instantiated by zero or more further components.  For example, the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   150
  previous scheme may get instantiated to @{text "\<lparr>x = a, y = b, z =
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   151
  c, \<dots> = m'\<rparr>"}, where @{text m'} refers to a different more part.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   152
  Fixed records are special instances of record schemes, where
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   153
  ``@{text "\<dots>"}'' is properly terminated by the @{text "() :: unit"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   154
  element.  In fact, @{text "\<lparr>x = a, y = b\<rparr>"} is just an abbreviation
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   155
  for @{text "\<lparr>x = a, y = b, \<dots> = ()\<rparr>"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   156
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   157
  \medskip Two key observations make extensible records in a simply
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   158
  typed language like HOL work out:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   159
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   160
  \begin{enumerate}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   161
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   162
  \item the more part is internalized, as a free term or type
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   163
  variable,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   164
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   165
  \item field names are externalized, they cannot be accessed within
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   166
  the logic as first-class values.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   167
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   168
  \end{enumerate}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   169
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   170
  \medskip In Isabelle/HOL record types have to be defined explicitly,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   171
  fixing their field names and types, and their (optional) parent
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   172
  record.  Afterwards, records may be formed using above syntax, while
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   173
  obeying the canonical order of fields as given by their declaration.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   174
  The record package provides several standard operations like
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   175
  selectors and updates.  The common setup for various generic proof
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   176
  tools enable succinct reasoning patterns.  See also the Isabelle/HOL
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   177
  tutorial \cite{isabelle-hol-book} for further instructions on using
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   178
  records in practice.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   179
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   180
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   181
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   182
subsection {* Record specifications *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   183
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   184
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   185
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   186
    @{command_def (HOL) "record"} & : & @{text "theory \<rightarrow> theory"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   187
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   188
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   189
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   190
    'record' typespec '=' (type '+')? (constdecl +)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   191
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   192
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   193
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   194
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   195
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   196
  \item @{command (HOL) "record"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t = \<tau> + c\<^sub>1 :: \<sigma>\<^sub>1
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   197
  \<dots> c\<^sub>n :: \<sigma>\<^sub>n"} defines extensible record type @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"},
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   198
  derived from the optional parent record @{text "\<tau>"} by adding new
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   199
  field components @{text "c\<^sub>i :: \<sigma>\<^sub>i"} etc.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   200
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   201
  The type variables of @{text "\<tau>"} and @{text "\<sigma>\<^sub>i"} need to be
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   202
  covered by the (distinct) parameters @{text "\<alpha>\<^sub>1, \<dots>,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   203
  \<alpha>\<^sub>m"}.  Type constructor @{text t} has to be new, while @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   204
  \<tau>} needs to specify an instance of an existing record type.  At
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   205
  least one new field @{text "c\<^sub>i"} has to be specified.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   206
  Basically, field names need to belong to a unique record.  This is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   207
  not a real restriction in practice, since fields are qualified by
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   208
  the record name internally.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   209
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   210
  The parent record specification @{text \<tau>} is optional; if omitted
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   211
  @{text t} becomes a root record.  The hierarchy of all records
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   212
  declared within a theory context forms a forest structure, i.e.\ a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   213
  set of trees starting with a root record each.  There is no way to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   214
  merge multiple parent records!
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   215
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   216
  For convenience, @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"} is made a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   217
  type abbreviation for the fixed record type @{text "\<lparr>c\<^sub>1 ::
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   218
  \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n\<rparr>"}, likewise is @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   219
  "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m, \<zeta>) t_scheme"} made an abbreviation for
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   220
  @{text "\<lparr>c\<^sub>1 :: \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n, \<dots> ::
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   221
  \<zeta>\<rparr>"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   222
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   223
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   224
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   225
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   226
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   227
subsection {* Record operations *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   228
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   229
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   230
  Any record definition of the form presented above produces certain
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   231
  standard operations.  Selectors and updates are provided for any
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   232
  field, including the improper one ``@{text more}''.  There are also
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   233
  cumulative record constructor functions.  To simplify the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   234
  presentation below, we assume for now that @{text "(\<alpha>\<^sub>1, \<dots>,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   235
  \<alpha>\<^sub>m) t"} is a root record with fields @{text "c\<^sub>1 ::
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   236
  \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   237
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   238
  \medskip \textbf{Selectors} and \textbf{updates} are available for
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   239
  any field (including ``@{text more}''):
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   240
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   241
  \begin{matharray}{lll}
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   242
    @{text "c\<^sub>i"} & @{text "::"} & @{text "\<lparr>\<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<sigma>\<^sub>i"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   243
    @{text "c\<^sub>i_update"} & @{text "::"} & @{text "\<sigma>\<^sub>i \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr>"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   244
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   245
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   246
  There is special syntax for application of updates: @{text "r\<lparr>x :=
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   247
  a\<rparr>"} abbreviates term @{text "x_update a r"}.  Further notation for
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   248
  repeated updates is also available: @{text "r\<lparr>x := a\<rparr>\<lparr>y := b\<rparr>\<lparr>z :=
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   249
  c\<rparr>"} may be written @{text "r\<lparr>x := a, y := b, z := c\<rparr>"}.  Note that
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   250
  because of postfix notation the order of fields shown here is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   251
  reverse than in the actual term.  Since repeated updates are just
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   252
  function applications, fields may be freely permuted in @{text "\<lparr>x
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   253
  := a, y := b, z := c\<rparr>"}, as far as logical equality is concerned.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   254
  Thus commutativity of independent updates can be proven within the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   255
  logic for any two fields, but not as a general theorem.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   256
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   257
  \medskip The \textbf{make} operation provides a cumulative record
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   258
  constructor function:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   259
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   260
  \begin{matharray}{lll}
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   261
    @{text "t.make"} & @{text "::"} & @{text "\<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   262
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   263
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   264
  \medskip We now reconsider the case of non-root records, which are
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   265
  derived of some parent.  In general, the latter may depend on
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   266
  another parent as well, resulting in a list of \emph{ancestor
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   267
  records}.  Appending the lists of fields of all ancestors results in
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   268
  a certain field prefix.  The record package automatically takes care
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   269
  of this by lifting operations over this context of ancestor fields.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   270
  Assuming that @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"} has ancestor
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   271
  fields @{text "b\<^sub>1 :: \<rho>\<^sub>1, \<dots>, b\<^sub>k :: \<rho>\<^sub>k"},
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   272
  the above record operations will get the following types:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   273
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   274
  \medskip
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   275
  \begin{tabular}{lll}
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   276
    @{text "c\<^sub>i"} & @{text "::"} & @{text "\<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<sigma>\<^sub>i"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   277
    @{text "c\<^sub>i_update"} & @{text "::"} & @{text "\<sigma>\<^sub>i \<Rightarrow> 
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   278
      \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow>
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   279
      \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr>"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   280
    @{text "t.make"} & @{text "::"} & @{text "\<rho>\<^sub>1 \<Rightarrow> \<dots> \<rho>\<^sub>k \<Rightarrow> \<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow>
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   281
      \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   282
  \end{tabular}
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   283
  \medskip
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   284
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   285
  \noindent Some further operations address the extension aspect of a
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   286
  derived record scheme specifically: @{text "t.fields"} produces a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   287
  record fragment consisting of exactly the new fields introduced here
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   288
  (the result may serve as a more part elsewhere); @{text "t.extend"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   289
  takes a fixed record and adds a given more part; @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   290
  "t.truncate"} restricts a record scheme to a fixed record.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   291
26852
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   292
  \medskip
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   293
  \begin{tabular}{lll}
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   294
    @{text "t.fields"} & @{text "::"} & @{text "\<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   295
    @{text "t.extend"} & @{text "::"} & @{text "\<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>\<rparr> \<Rightarrow>
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   296
      \<zeta> \<Rightarrow> \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr>"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   297
    @{text "t.truncate"} & @{text "::"} & @{text "\<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   298
  \end{tabular}
a31203f58b20 misc tuning;
wenzelm
parents: 26849
diff changeset
   299
  \medskip
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   300
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   301
  \noindent Note that @{text "t.make"} and @{text "t.fields"} coincide
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   302
  for root records.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   303
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   304
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   305
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   306
subsection {* Derived rules and proof tools *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   307
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   308
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   309
  The record package proves several results internally, declaring
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   310
  these facts to appropriate proof tools.  This enables users to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   311
  reason about record structures quite conveniently.  Assume that
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   312
  @{text t} is a record type as specified above.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   313
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   314
  \begin{enumerate}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   315
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   316
  \item Standard conversions for selectors or updates applied to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   317
  record constructor terms are made part of the default Simplifier
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   318
  context; thus proofs by reduction of basic operations merely require
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   319
  the @{method simp} method without further arguments.  These rules
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   320
  are available as @{text "t.simps"}, too.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   321
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   322
  \item Selectors applied to updated records are automatically reduced
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   323
  by an internal simplification procedure, which is also part of the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   324
  standard Simplifier setup.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   325
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   326
  \item Inject equations of a form analogous to @{prop "(x, y) = (x',
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   327
  y') \<equiv> x = x' \<and> y = y'"} are declared to the Simplifier and Classical
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   328
  Reasoner as @{attribute iff} rules.  These rules are available as
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   329
  @{text "t.iffs"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   330
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   331
  \item The introduction rule for record equality analogous to @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   332
  "x r = x r' \<Longrightarrow> y r = y r' \<dots> \<Longrightarrow> r = r'"} is declared to the Simplifier,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   333
  and as the basic rule context as ``@{attribute intro}@{text "?"}''.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   334
  The rule is called @{text "t.equality"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   335
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   336
  \item Representations of arbitrary record expressions as canonical
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   337
  constructor terms are provided both in @{method cases} and @{method
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   338
  induct} format (cf.\ the generic proof methods of the same name,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   339
  \secref{sec:cases-induct}).  Several variations are available, for
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   340
  fixed records, record schemes, more parts etc.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   341
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   342
  The generic proof methods are sufficiently smart to pick the most
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   343
  sensible rule according to the type of the indicated record
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   344
  expression: users just need to apply something like ``@{text "(cases
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   345
  r)"}'' to a certain proof problem.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   346
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   347
  \item The derived record operations @{text "t.make"}, @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   348
  "t.fields"}, @{text "t.extend"}, @{text "t.truncate"} are \emph{not}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   349
  treated automatically, but usually need to be expanded by hand,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   350
  using the collective fact @{text "t.defs"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   351
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   352
  \end{enumerate}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   353
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   354
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   355
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   356
section {* Datatypes \label{sec:hol-datatype} *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   357
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   358
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   359
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   360
    @{command_def (HOL) "datatype"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   361
  @{command_def (HOL) "rep_datatype"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   362
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   363
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   364
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   365
    'datatype' (dtspec + 'and')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   366
    ;
27452
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
   367
    'rep\_datatype' ('(' (name +) ')')? (term +)
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   368
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   369
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   370
    dtspec: parname? typespec infix? '=' (cons + '|')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   371
    ;
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   372
    cons: name ( type * ) mixfix?
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   373
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   374
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   375
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   376
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   377
  \item @{command (HOL) "datatype"} defines inductive datatypes in
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   378
  HOL.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   379
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   380
  \item @{command (HOL) "rep_datatype"} represents existing types as
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   381
  inductive ones, generating the standard infrastructure of derived
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   382
  concepts (primitive recursion etc.).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   383
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   384
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   385
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   386
  The induction and exhaustion theorems generated provide case names
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   387
  according to the constructors involved, while parameters are named
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   388
  after the types (see also \secref{sec:cases-induct}).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   389
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   390
  See \cite{isabelle-HOL} for more details on datatypes, but beware of
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   391
  the old-style theory syntax being used there!  Apart from proper
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   392
  proof methods for case-analysis and induction, there are also
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   393
  emulations of ML tactics @{method (HOL) case_tac} and @{method (HOL)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   394
  induct_tac} available, see \secref{sec:hol-induct-tac}; these admit
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   395
  to refer directly to the internal structure of subgoals (including
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   396
  internally bound parameters).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   397
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   398
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   399
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   400
section {* Recursive functions \label{sec:recursion} *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   401
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   402
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   403
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   404
    @{command_def (HOL) "primrec"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   405
    @{command_def (HOL) "fun"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   406
    @{command_def (HOL) "function"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   407
    @{command_def (HOL) "termination"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   408
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   409
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   410
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   411
    'primrec' target? fixes 'where' equations
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   412
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   413
    equations: (thmdecl? prop + '|')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   414
    ;
26985
51c5acd57b75 function: uniform treatment of target, not as config;
wenzelm
parents: 26894
diff changeset
   415
    ('fun' | 'function') target? functionopts? fixes 'where' clauses
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   416
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   417
    clauses: (thmdecl? prop ('(' 'otherwise' ')')? + '|')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   418
    ;
26985
51c5acd57b75 function: uniform treatment of target, not as config;
wenzelm
parents: 26894
diff changeset
   419
    functionopts: '(' (('sequential' | 'domintros' | 'tailrec' | 'default' term) + ',') ')'
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   420
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   421
    'termination' ( term )?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   422
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   423
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   424
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   425
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   426
  \item @{command (HOL) "primrec"} defines primitive recursive
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   427
  functions over datatypes, see also \cite{isabelle-HOL}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   428
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   429
  \item @{command (HOL) "function"} defines functions by general
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   430
  wellfounded recursion. A detailed description with examples can be
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   431
  found in \cite{isabelle-function}. The function is specified by a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   432
  set of (possibly conditional) recursive equations with arbitrary
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   433
  pattern matching. The command generates proof obligations for the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   434
  completeness and the compatibility of patterns.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   435
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   436
  The defined function is considered partial, and the resulting
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   437
  simplification rules (named @{text "f.psimps"}) and induction rule
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   438
  (named @{text "f.pinduct"}) are guarded by a generated domain
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   439
  predicate @{text "f_dom"}. The @{command (HOL) "termination"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   440
  command can then be used to establish that the function is total.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   441
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   442
  \item @{command (HOL) "fun"} is a shorthand notation for ``@{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   443
  (HOL) "function"}~@{text "(sequential)"}, followed by automated
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   444
  proof attempts regarding pattern matching and termination.  See
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   445
  \cite{isabelle-function} for further details.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   446
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   447
  \item @{command (HOL) "termination"}~@{text f} commences a
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   448
  termination proof for the previously defined function @{text f}.  If
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   449
  this is omitted, the command refers to the most recent function
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   450
  definition.  After the proof is closed, the recursive equations and
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   451
  the induction principle is established.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   452
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   453
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   454
27452
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
   455
  Recursive definitions introduced by the @{command (HOL) "function"}
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
   456
  command accommodate
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   457
  reasoning by induction (cf.\ \secref{sec:cases-induct}): rule @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   458
  "c.induct"} (where @{text c} is the name of the function definition)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   459
  refers to a specific induction rule, with parameters named according
33857
0cb5002c52db clarified; checked
krauss
parents: 31998
diff changeset
   460
  to the user-specified equations. Cases are numbered (starting from 1).
0cb5002c52db clarified; checked
krauss
parents: 31998
diff changeset
   461
0cb5002c52db clarified; checked
krauss
parents: 31998
diff changeset
   462
  For @{command (HOL) "primrec"}, the induction principle coincides
27452
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
   463
  with structural recursion on the datatype the recursion is carried
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
   464
  out.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   465
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   466
  The equations provided by these packages may be referred later as
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   467
  theorem list @{text "f.simps"}, where @{text f} is the (collective)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   468
  name of the functions defined.  Individual equations may be named
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   469
  explicitly as well.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   470
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   471
  The @{command (HOL) "function"} command accepts the following
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   472
  options.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   473
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   474
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   475
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   476
  \item @{text sequential} enables a preprocessor which disambiguates
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   477
  overlapping patterns by making them mutually disjoint.  Earlier
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   478
  equations take precedence over later ones.  This allows to give the
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   479
  specification in a format very similar to functional programming.
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   480
  Note that the resulting simplification and induction rules
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   481
  correspond to the transformed specification, not the one given
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   482
  originally. This usually means that each equation given by the user
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   483
  may result in several theroems.  Also note that this automatic
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   484
  transformation only works for ML-style datatype patterns.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   485
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   486
  \item @{text domintros} enables the automated generation of
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   487
  introduction rules for the domain predicate. While mostly not
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   488
  needed, they can be helpful in some proofs about partial functions.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   489
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   490
  \item @{text tailrec} generates the unconstrained recursive
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   491
  equations even without a termination proof, provided that the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   492
  function is tail-recursive. This currently only works
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   493
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   494
  \item @{text "default d"} allows to specify a default value for a
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   495
  (partial) function, which will ensure that @{text "f x = d x"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   496
  whenever @{text "x \<notin> f_dom"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   497
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   498
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   499
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   500
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   501
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   502
subsection {* Proof methods related to recursive definitions *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   503
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   504
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   505
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   506
    @{method_def (HOL) pat_completeness} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   507
    @{method_def (HOL) relation} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   508
    @{method_def (HOL) lexicographic_order} & : & @{text method} \\
33858
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   509
    @{method_def (HOL) size_change} & : & @{text method} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   510
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   511
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   512
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   513
    'relation' term
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   514
    ;
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   515
    'lexicographic\_order' ( clasimpmod * )
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   516
    ;
33858
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   517
    'size\_change' ( orders ( clasimpmod * ) )
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   518
    ;
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   519
    orders: ( 'max' | 'min' | 'ms' ) *
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   520
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   521
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   522
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   523
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   524
  \item @{method (HOL) pat_completeness} is a specialized method to
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   525
  solve goals regarding the completeness of pattern matching, as
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   526
  required by the @{command (HOL) "function"} package (cf.\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   527
  \cite{isabelle-function}).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   528
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   529
  \item @{method (HOL) relation}~@{text R} introduces a termination
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   530
  proof using the relation @{text R}.  The resulting proof state will
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   531
  contain goals expressing that @{text R} is wellfounded, and that the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   532
  arguments of recursive calls decrease with respect to @{text R}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   533
  Usually, this method is used as the initial proof step of manual
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   534
  termination proofs.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   535
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   536
  \item @{method (HOL) "lexicographic_order"} attempts a fully
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   537
  automated termination proof by searching for a lexicographic
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   538
  combination of size measures on the arguments of the function. The
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   539
  method accepts the same arguments as the @{method auto} method,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   540
  which it uses internally to prove local descents.  The same context
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   541
  modifiers as for @{method auto} are accepted, see
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   542
  \secref{sec:clasimp}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   543
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   544
  In case of failure, extensive information is printed, which can help
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   545
  to analyse the situation (cf.\ \cite{isabelle-function}).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   546
33858
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   547
  \item @{method (HOL) "size_change"} also works on termination goals,
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   548
  using a variation of the size-change principle, together with a
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   549
  graph decomposition technique (see \cite{krauss_phd} for details).
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   550
  Three kinds of orders are used internally: @{text max}, @{text min},
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   551
  and @{text ms} (multiset), which is only available when the theory
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   552
  @{text Multiset} is loaded. When no order kinds are given, they are
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   553
  tried in order. The search for a termination proof uses SAT solving
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   554
  internally.
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   555
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   556
 For local descent proofs, the same context modifiers as for @{method
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   557
  auto} are accepted, see \secref{sec:clasimp}.
0c348f7997f7 documented size_change in isar-ref manual
krauss
parents: 33857
diff changeset
   558
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   559
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   560
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   561
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   562
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   563
subsection {* Old-style recursive function definitions (TFL) *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   564
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   565
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   566
  The old TFL commands @{command (HOL) "recdef"} and @{command (HOL)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   567
  "recdef_tc"} for defining recursive are mostly obsolete; @{command
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   568
  (HOL) "function"} or @{command (HOL) "fun"} should be used instead.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   569
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   570
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   571
    @{command_def (HOL) "recdef"} & : & @{text "theory \<rightarrow> theory)"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   572
    @{command_def (HOL) "recdef_tc"}@{text "\<^sup>*"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   573
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   574
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   575
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   576
    'recdef' ('(' 'permissive' ')')? \\ name term (prop +) hints?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   577
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   578
    recdeftc thmdecl? tc
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   579
    ;
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   580
    hints: '(' 'hints' ( recdefmod * ) ')'
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   581
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   582
    recdefmod: (('recdef\_simp' | 'recdef\_cong' | 'recdef\_wf') (() | 'add' | 'del') ':' thmrefs) | clasimpmod
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   583
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   584
    tc: nameref ('(' nat ')')?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   585
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   586
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   587
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   588
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   589
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   590
  \item @{command (HOL) "recdef"} defines general well-founded
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   591
  recursive functions (using the TFL package), see also
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   592
  \cite{isabelle-HOL}.  The ``@{text "(permissive)"}'' option tells
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   593
  TFL to recover from failed proof attempts, returning unfinished
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   594
  results.  The @{text recdef_simp}, @{text recdef_cong}, and @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   595
  recdef_wf} hints refer to auxiliary rules to be used in the internal
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   596
  automated proof process of TFL.  Additional @{syntax clasimpmod}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   597
  declarations (cf.\ \secref{sec:clasimp}) may be given to tune the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   598
  context of the Simplifier (cf.\ \secref{sec:simplifier}) and
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   599
  Classical reasoner (cf.\ \secref{sec:classical}).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   600
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   601
  \item @{command (HOL) "recdef_tc"}~@{text "c (i)"} recommences the
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   602
  proof for leftover termination condition number @{text i} (default
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   603
  1) as generated by a @{command (HOL) "recdef"} definition of
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   604
  constant @{text c}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   605
  
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   606
  Note that in most cases, @{command (HOL) "recdef"} is able to finish
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   607
  its internal proofs without manual intervention.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   608
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   609
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   610
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   611
  \medskip Hints for @{command (HOL) "recdef"} may be also declared
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   612
  globally, using the following attributes.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   613
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   614
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   615
    @{attribute_def (HOL) recdef_simp} & : & @{text attribute} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   616
    @{attribute_def (HOL) recdef_cong} & : & @{text attribute} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   617
    @{attribute_def (HOL) recdef_wf} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   618
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   619
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   620
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   621
    ('recdef\_simp' | 'recdef\_cong' | 'recdef\_wf') (() | 'add' | 'del')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   622
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   623
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   624
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   625
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   626
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   627
section {* Inductive and coinductive definitions \label{sec:hol-inductive} *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   628
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   629
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   630
  An \textbf{inductive definition} specifies the least predicate (or
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   631
  set) @{text R} closed under given rules: applying a rule to elements
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   632
  of @{text R} yields a result within @{text R}.  For example, a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   633
  structural operational semantics is an inductive definition of an
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   634
  evaluation relation.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   635
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   636
  Dually, a \textbf{coinductive definition} specifies the greatest
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   637
  predicate~/ set @{text R} that is consistent with given rules: every
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   638
  element of @{text R} can be seen as arising by applying a rule to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   639
  elements of @{text R}.  An important example is using bisimulation
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   640
  relations to formalise equivalence of processes and infinite data
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   641
  structures.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   642
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   643
  \medskip The HOL package is related to the ZF one, which is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   644
  described in a separate paper,\footnote{It appeared in CADE
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   645
  \cite{paulson-CADE}; a longer version is distributed with Isabelle.}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   646
  which you should refer to in case of difficulties.  The package is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   647
  simpler than that of ZF thanks to implicit type-checking in HOL.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   648
  The types of the (co)inductive predicates (or sets) determine the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   649
  domain of the fixedpoint definition, and the package does not have
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   650
  to use inference rules for type-checking.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   651
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   652
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   653
    @{command_def (HOL) "inductive"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   654
    @{command_def (HOL) "inductive_set"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   655
    @{command_def (HOL) "coinductive"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   656
    @{command_def (HOL) "coinductive_set"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   657
    @{attribute_def (HOL) mono} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   658
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   659
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   660
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   661
    ('inductive' | 'inductive\_set' | 'coinductive' | 'coinductive\_set') target? fixes ('for' fixes)? \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   662
    ('where' clauses)? ('monos' thmrefs)?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   663
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   664
    clauses: (thmdecl? prop + '|')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   665
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   666
    'mono' (() | 'add' | 'del')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   667
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   668
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   669
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   670
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   671
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   672
  \item @{command (HOL) "inductive"} and @{command (HOL)
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   673
  "coinductive"} define (co)inductive predicates from the
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   674
  introduction rules given in the @{keyword "where"} part.  The
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   675
  optional @{keyword "for"} part contains a list of parameters of the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   676
  (co)inductive predicates that remain fixed throughout the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   677
  definition.  The optional @{keyword "monos"} section contains
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   678
  \emph{monotonicity theorems}, which are required for each operator
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   679
  applied to a recursive set in the introduction rules.  There
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   680
  \emph{must} be a theorem of the form @{text "A \<le> B \<Longrightarrow> M A \<le> M B"},
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   681
  for each premise @{text "M R\<^sub>i t"} in an introduction rule!
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   682
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   683
  \item @{command (HOL) "inductive_set"} and @{command (HOL)
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   684
  "coinductive_set"} are wrappers for to the previous commands,
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   685
  allowing the definition of (co)inductive sets.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   686
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   687
  \item @{attribute (HOL) mono} declares monotonicity rules.  These
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   688
  rule are involved in the automated monotonicity proof of @{command
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   689
  (HOL) "inductive"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   690
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   691
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   692
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   693
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   694
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   695
subsection {* Derived rules *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   696
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   697
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   698
  Each (co)inductive definition @{text R} adds definitions to the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   699
  theory and also proves some theorems:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   700
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   701
  \begin{description}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   702
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   703
  \item @{text R.intros} is the list of introduction rules as proven
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   704
  theorems, for the recursive predicates (or sets).  The rules are
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   705
  also available individually, using the names given them in the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   706
  theory file;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   707
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   708
  \item @{text R.cases} is the case analysis (or elimination) rule;
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   709
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   710
  \item @{text R.induct} or @{text R.coinduct} is the (co)induction
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   711
  rule.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   712
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   713
  \end{description}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   714
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   715
  When several predicates @{text "R\<^sub>1, \<dots>, R\<^sub>n"} are
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   716
  defined simultaneously, the list of introduction rules is called
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   717
  @{text "R\<^sub>1_\<dots>_R\<^sub>n.intros"}, the case analysis rules are
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   718
  called @{text "R\<^sub>1.cases, \<dots>, R\<^sub>n.cases"}, and the list
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   719
  of mutual induction rules is called @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   720
  "R\<^sub>1_\<dots>_R\<^sub>n.inducts"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   721
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   722
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   723
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   724
subsection {* Monotonicity theorems *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   725
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   726
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   727
  Each theory contains a default set of theorems that are used in
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   728
  monotonicity proofs.  New rules can be added to this set via the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   729
  @{attribute (HOL) mono} attribute.  The HOL theory @{text Inductive}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   730
  shows how this is done.  In general, the following monotonicity
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   731
  theorems may be added:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   732
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   733
  \begin{itemize}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   734
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   735
  \item Theorems of the form @{text "A \<le> B \<Longrightarrow> M A \<le> M B"}, for proving
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   736
  monotonicity of inductive definitions whose introduction rules have
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   737
  premises involving terms such as @{text "M R\<^sub>i t"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   738
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   739
  \item Monotonicity theorems for logical operators, which are of the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   740
  general form @{text "(\<dots> \<longrightarrow> \<dots>) \<Longrightarrow> \<dots> (\<dots> \<longrightarrow> \<dots>) \<Longrightarrow> \<dots> \<longrightarrow> \<dots>"}.  For example, in
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   741
  the case of the operator @{text "\<or>"}, the corresponding theorem is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   742
  \[
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   743
  \infer{@{text "P\<^sub>1 \<or> P\<^sub>2 \<longrightarrow> Q\<^sub>1 \<or> Q\<^sub>2"}}{@{text "P\<^sub>1 \<longrightarrow> Q\<^sub>1"} & @{text "P\<^sub>2 \<longrightarrow> Q\<^sub>2"}}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   744
  \]
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   745
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   746
  \item De Morgan style equations for reasoning about the ``polarity''
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   747
  of expressions, e.g.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   748
  \[
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   749
  @{prop "\<not> \<not> P \<longleftrightarrow> P"} \qquad\qquad
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   750
  @{prop "\<not> (P \<and> Q) \<longleftrightarrow> \<not> P \<or> \<not> Q"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   751
  \]
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   752
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   753
  \item Equations for reducing complex operators to more primitive
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   754
  ones whose monotonicity can easily be proved, e.g.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   755
  \[
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   756
  @{prop "(P \<longrightarrow> Q) \<longleftrightarrow> \<not> P \<or> Q"} \qquad\qquad
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   757
  @{prop "Ball A P \<equiv> \<forall>x. x \<in> A \<longrightarrow> P x"}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   758
  \]
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   759
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   760
  \end{itemize}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   761
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   762
  %FIXME: Example of an inductive definition
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   763
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   764
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   765
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   766
section {* Arithmetic proof support *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   767
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   768
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   769
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   770
    @{method_def (HOL) arith} & : & @{text method} \\
30863
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   771
    @{attribute_def (HOL) arith} & : & @{text attribute} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   772
    @{attribute_def (HOL) arith_split} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   773
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   774
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   775
  The @{method (HOL) arith} method decides linear arithmetic problems
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   776
  (on types @{text nat}, @{text int}, @{text real}).  Any current
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   777
  facts are inserted into the goal before running the procedure.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   778
30863
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   779
  The @{attribute (HOL) arith} attribute declares facts that are
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   780
  always supplied to the arithmetic provers implicitly.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   781
30863
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   782
  The @{attribute (HOL) arith_split} attribute declares case split
30865
5106e13d400f fixed formal markup;
wenzelm
parents: 30863
diff changeset
   783
  rules to be expanded before @{method (HOL) arith} is invoked.
30863
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   784
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   785
  Note that a simpler (but faster) arithmetic prover is
5dc392a59bb7 Finite_Set: lemma
nipkow
parents: 30242
diff changeset
   786
  already invoked by the Simplifier.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   787
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   788
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
   789
30169
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   790
section {* Intuitionistic proof search *}
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   791
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   792
text {*
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   793
  \begin{matharray}{rcl}
30171
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   794
    @{method_def (HOL) iprover} & : & @{text method} \\
30169
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   795
  \end{matharray}
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   796
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   797
  \begin{rail}
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   798
    'iprover' ('!' ?) ( rulemod * )
30169
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   799
    ;
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   800
  \end{rail}
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   801
30171
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   802
  The @{method (HOL) iprover} method performs intuitionistic proof
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   803
  search, depending on specifically declared rules from the context,
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   804
  or given as explicit arguments.  Chained facts are inserted into the
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   805
  goal before commencing proof search; ``@{method (HOL) iprover}@{text
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   806
  "!"}''  means to include the current @{fact prems} as well.
30169
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   807
  
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   808
  Rules need to be classified as @{attribute (Pure) intro},
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   809
  @{attribute (Pure) elim}, or @{attribute (Pure) dest}; here the
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   810
  ``@{text "!"}'' indicator refers to ``safe'' rules, which may be
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   811
  applied aggressively (without considering back-tracking later).
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   812
  Rules declared with ``@{text "?"}'' are ignored in proof search (the
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   813
  single-step @{method rule} method still observes these).  An
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   814
  explicit weight annotation may be given as well; otherwise the
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   815
  number of rule premises will be taken into account here.
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   816
*}
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   817
9531eaafd781 moved method "iprover" to HOL specific part;
wenzelm
parents: 29560
diff changeset
   818
30171
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   819
section {* Coherent Logic *}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   820
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   821
text {*
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   822
  \begin{matharray}{rcl}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   823
    @{method_def (HOL) "coherent"} & : & @{text method} \\
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   824
  \end{matharray}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   825
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   826
  \begin{rail}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   827
    'coherent' thmrefs?
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   828
    ;
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   829
  \end{rail}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   830
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   831
  The @{method (HOL) coherent} method solves problems of
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   832
  \emph{Coherent Logic} \cite{Bezem-Coquand:2005}, which covers
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   833
  applications in confluence theory, lattice theory and projective
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   834
  geometry.  See @{"file" "~~/src/HOL/ex/Coherent.thy"} for some
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   835
  examples.
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   836
*}
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   837
5989863ffafc added method "coherent";
wenzelm
parents: 30169
diff changeset
   838
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   839
section {* Checking and refuting propositions *}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   840
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   841
text {*
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   842
  Identifying incorrect propositions usually involves evaluation of
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   843
  particular assignments and systematic counter example search.  This
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   844
  is supported by the following commands.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   845
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   846
  \begin{matharray}{rcl}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   847
    @{command_def (HOL) "value"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   848
    @{command_def (HOL) "quickcheck"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   849
    @{command_def (HOL) "quickcheck_params"} & : & @{text "theory \<rightarrow> theory"}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   850
  \end{matharray}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   851
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   852
  \begin{rail}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   853
    'value' ( ( '[' name ']' ) ? ) modes? term
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   854
    ;
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   855
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   856
    'quickcheck' ( ( '[' args ']' ) ? ) nat?
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   857
    ;
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   858
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   859
    'quickcheck_params' ( ( '[' args ']' ) ? )
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   860
    ;
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   861
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   862
    modes: '(' (name + ) ')'
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   863
    ;
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   864
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   865
    args: ( name '=' value + ',' )
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   866
    ;
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   867
  \end{rail}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   868
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   869
  \begin{description}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   870
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   871
  \item @{command (HOL) "value"}~@{text t} evaluates and prints a
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   872
    term; optionally @{text modes} can be specified, which are
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   873
    appended to the current print mode (see also \cite{isabelle-ref}).
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   874
    Internally, the evaluation is performed by registered evaluators,
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   875
    which are invoked sequentially until a result is returned.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   876
    Alternatively a specific evaluator can be selected using square
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   877
    brackets; available evaluators include @{text nbe} for
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   878
    \emph{normalization by evaluation} and \emph{code} for code
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   879
    generation in SML.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   880
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   881
  \item @{command (HOL) "quickcheck"} tests the current goal for
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   882
    counter examples using a series of arbitrary assignments for its
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   883
    free variables; by default the first subgoal is tested, an other
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   884
    can be selected explicitly using an optional goal index.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   885
    A number of configuration options are supported for
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   886
    @{command (HOL) "quickcheck"}, notably:
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   887
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   888
    \begin{description}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   889
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   890
      \item[size] specifies the maximum size of the search space for
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   891
        assignment values.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   892
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   893
      \item[iterations] sets how many sets of assignments are
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   894
        generated for each particular size.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   895
35331
450ab945c451 document Quickcheck's "no_assms" option
blanchet
parents: 34172
diff changeset
   896
      \item[no\_assms] specifies whether assumptions in
450ab945c451 document Quickcheck's "no_assms" option
blanchet
parents: 34172
diff changeset
   897
        structured proofs should be ignored.
450ab945c451 document Quickcheck's "no_assms" option
blanchet
parents: 34172
diff changeset
   898
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   899
    \end{description}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   900
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   901
    These option can be given within square brackets.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   902
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   903
  \item @{command (HOL) "quickcheck_params"} changes quickcheck
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   904
    configuration options persitently.
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   905
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   906
  \end{description}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   907
*}
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   908
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   909
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   910
section {* Invoking automated reasoning tools -- The Sledgehammer *}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   911
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   912
text {*
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   913
  Isabelle/HOL includes a generic \emph{ATP manager} that allows
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   914
  external automated reasoning tools to crunch a pending goal.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   915
  Supported provers include E\footnote{\url{http://www.eprover.org}},
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   916
  SPASS\footnote{\url{http://www.spass-prover.org/}}, and Vampire.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   917
  There is also a wrapper to invoke provers remotely via the
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   918
  SystemOnTPTP\footnote{\url{http://www.cs.miami.edu/~tptp/cgi-bin/SystemOnTPTP}}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   919
  web service.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   920
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   921
  The problem passed to external provers consists of the goal together
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   922
  with a smart selection of lemmas from the current theory context.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   923
  The result of a successful proof search is some source text that
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   924
  usually reconstructs the proof within Isabelle, without requiring
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   925
  external provers again.  The Metis
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   926
  prover\footnote{\url{http://www.gilith.com/software/metis/}} that is
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   927
  integrated into Isabelle/HOL is being used here.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   928
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   929
  In this mode of operation, heavy means of automated reasoning are
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   930
  used as a strong relevance filter, while the main proof checking
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   931
  works via explicit inferences going through the Isabelle kernel.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   932
  Moreover, rechecking Isabelle proof texts with already specified
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   933
  auxiliary facts is much faster than performing fully automated
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   934
  search over and over again.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   935
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   936
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   937
    @{command_def (HOL) "sledgehammer"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   938
    @{command_def (HOL) "print_atps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   939
    @{command_def (HOL) "atp_info"}@{text "\<^sup>*"} & : & @{text "any \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   940
    @{command_def (HOL) "atp_kill"}@{text "\<^sup>*"} & : & @{text "any \<rightarrow>"} \\
29112
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   941
    @{command_def (HOL) "atp_messages"}@{text "\<^sup>*"} & : & @{text "any \<rightarrow>"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   942
    @{method_def (HOL) metis} & : & @{text method} \\
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   943
  \end{matharray}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   944
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   945
  \begin{rail}
31912
f5bd306f5e9d more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
haftmann
parents: 31254
diff changeset
   946
  'sledgehammer' ( nameref * )
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   947
  ;
29112
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   948
  'atp\_messages' ('(' nat ')')?
29114
715178f6ae31 repaired railroad accident;
wenzelm
parents: 29112
diff changeset
   949
  ;
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   950
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   951
  'metis' thmrefs
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   952
  ;
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   953
  \end{rail}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   954
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   955
  \begin{description}
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   956
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   957
  \item @{command (HOL) sledgehammer}~@{text "prover\<^sub>1 \<dots> prover\<^sub>n"}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   958
  invokes the specified automated theorem provers on the first
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   959
  subgoal.  Provers are run in parallel, the first successful result
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   960
  is displayed, and the other attempts are terminated.
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   961
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   962
  Provers are defined in the theory context, see also @{command (HOL)
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   963
  print_atps}.  If no provers are given as arguments to @{command
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   964
  (HOL) sledgehammer}, the system refers to the default defined as
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   965
  ``ATP provers'' preference by the user interface.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   966
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   967
  There are additional preferences for timeout (default: 60 seconds),
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   968
  and the maximum number of independent prover processes (default: 5);
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   969
  excessive provers are automatically terminated.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   970
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   971
  \item @{command (HOL) print_atps} prints the list of automated
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   972
  theorem provers available to the @{command (HOL) sledgehammer}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   973
  command.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   974
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   975
  \item @{command (HOL) atp_info} prints information about presently
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   976
  running provers, including elapsed runtime, and the remaining time
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   977
  until timeout.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   978
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   979
  \item @{command (HOL) atp_kill} terminates all presently running
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   980
  provers.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   981
29112
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   982
  \item @{command (HOL) atp_messages} displays recent messages issued
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   983
  by automated theorem provers.  This allows to examine results that
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   984
  might have got lost due to the asynchronous nature of default
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   985
  @{command (HOL) sledgehammer} output.  An optional message limit may
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   986
  be specified (default 5).
f2b45eea6dac added 'atp_messages' command, which displays recent messages synchronously;
wenzelm
parents: 28761
diff changeset
   987
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   988
  \item @{method (HOL) metis}~@{text "facts"} invokes the Metis prover
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   989
  with the given facts.  Metis is an automated proof tool of medium
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   990
  strength, but is fully integrated into Isabelle/HOL, with explicit
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   991
  inferences going through the kernel.  Thus its results are
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   992
  guaranteed to be ``correct by construction''.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   993
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   994
  Note that all facts used with Metis need to be specified as explicit
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   995
  arguments.  There are no rule declarations as for other Isabelle
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   996
  provers, like @{method blast} or @{method fast}.
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   997
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
   998
  \end{description}
28603
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
   999
*}
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
  1000
b40800eef8a7 added sledgehammer etc.;
wenzelm
parents: 28562
diff changeset
  1001
28752
wenzelm
parents: 28687
diff changeset
  1002
section {* Unstructured case analysis and induction \label{sec:hol-induct-tac} *}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1003
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1004
text {*
27123
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1005
  The following tools of Isabelle/HOL support cases analysis and
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1006
  induction in unstructured tactic scripts; see also
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1007
  \secref{sec:cases-induct} for proper Isar versions of similar ideas.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1008
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1009
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1010
    @{method_def (HOL) case_tac}@{text "\<^sup>*"} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1011
    @{method_def (HOL) induct_tac}@{text "\<^sup>*"} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1012
    @{method_def (HOL) ind_cases}@{text "\<^sup>*"} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1013
    @{command_def (HOL) "inductive_cases"}@{text "\<^sup>*"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1014
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1015
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1016
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1017
    'case\_tac' goalspec? term rule?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1018
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1019
    'induct\_tac' goalspec? (insts * 'and') rule?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1020
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1021
    'ind\_cases' (prop +) ('for' (name +)) ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1022
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1023
    'inductive\_cases' (thmdecl? (prop +) + 'and')
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1024
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1025
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1026
    rule: ('rule' ':' thmref)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1027
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1028
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1029
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1030
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1031
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1032
  \item @{method (HOL) case_tac} and @{method (HOL) induct_tac} admit
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1033
  to reason about inductive types.  Rules are selected according to
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1034
  the declarations by the @{attribute cases} and @{attribute induct}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1035
  attributes, cf.\ \secref{sec:cases-induct}.  The @{command (HOL)
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1036
  datatype} package already takes care of this.
27123
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1037
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1038
  These unstructured tactics feature both goal addressing and dynamic
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1039
  instantiation.  Note that named rule cases are \emph{not} provided
27123
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1040
  as would be by the proper @{method cases} and @{method induct} proof
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1041
  methods (see \secref{sec:cases-induct}).  Unlike the @{method
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1042
  induct} method, @{method induct_tac} does not handle structured rule
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1043
  statements, only the compact object-logic conclusion of the subgoal
11fcdd5897dd case_tac/induct_tac: use same declarations as cases/induct;
wenzelm
parents: 27103
diff changeset
  1044
  being addressed.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1045
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1046
  \item @{method (HOL) ind_cases} and @{command (HOL)
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1047
  "inductive_cases"} provide an interface to the internal @{ML_text
26860
7c749112261c replaced some latex macros by antiquotations;
wenzelm
parents: 26852
diff changeset
  1048
  mk_cases} operation.  Rules are simplified in an unrestricted
7c749112261c replaced some latex macros by antiquotations;
wenzelm
parents: 26852
diff changeset
  1049
  forward manner.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1050
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1051
  While @{method (HOL) ind_cases} is a proof method to apply the
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1052
  result immediately as elimination rules, @{command (HOL)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1053
  "inductive_cases"} provides case split theorems at the theory level
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1054
  for later use.  The @{keyword "for"} argument of the @{method (HOL)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1055
  ind_cases} method allows to specify a list of variables that should
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1056
  be generalized before applying the resulting rule.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1057
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1058
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1059
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1060
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1061
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1062
section {* Executable code *}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1063
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1064
text {*
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1065
  Isabelle/Pure provides two generic frameworks to support code
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1066
  generation from executable specifications.  Isabelle/HOL
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1067
  instantiates these mechanisms in a way that is amenable to end-user
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1068
  applications.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1069
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1070
  One framework generates code from both functional and relational
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1071
  programs to SML.  See \cite{isabelle-HOL} for further information
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1072
  (this actually covers the new-style theory format as well).
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1073
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1074
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1075
    @{command_def (HOL) "code_module"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1076
    @{command_def (HOL) "code_library"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1077
    @{command_def (HOL) "consts_code"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1078
    @{command_def (HOL) "types_code"} & : & @{text "theory \<rightarrow> theory"} \\  
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1079
    @{attribute_def (HOL) code} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1080
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1081
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1082
  \begin{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1083
  ( 'code\_module' | 'code\_library' ) modespec ? name ? \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1084
    ( 'file' name ) ? ( 'imports' ( name + ) ) ? \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1085
    'contains' ( ( name '=' term ) + | term + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1086
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1087
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1088
  modespec: '(' ( name * ) ')'
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1089
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1090
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1091
  'consts\_code' (codespec +)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1092
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1093
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1094
  codespec: const template attachment ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1095
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1096
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1097
  'types\_code' (tycodespec +)
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1098
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1099
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1100
  tycodespec: name template attachment ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1101
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1102
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1103
  const: term
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1104
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1105
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1106
  template: '(' string ')'
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1107
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1108
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1109
  attachment: 'attach' modespec ? verblbrace text verbrbrace
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1110
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1111
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1112
  'code' (name)?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1113
  ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1114
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1115
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1116
  \medskip The other framework generates code from functional programs
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1117
  (including overloading using type classes) to SML \cite{SML}, OCaml
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1118
  \cite{OCaml} and Haskell \cite{haskell-revised-report}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1119
  Conceptually, code generation is split up in three steps:
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1120
  \emph{selection} of code theorems, \emph{translation} into an
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1121
  abstract executable view and \emph{serialization} to a specific
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1122
  \emph{target language}.  See \cite{isabelle-codegen} for an
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1123
  introduction on how to use it.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1124
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1125
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1126
    @{command_def (HOL) "export_code"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1127
    @{command_def (HOL) "code_thms"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1128
    @{command_def (HOL) "code_deps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1129
    @{command_def (HOL) "code_datatype"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1130
    @{command_def (HOL) "code_const"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1131
    @{command_def (HOL) "code_type"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1132
    @{command_def (HOL) "code_class"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1133
    @{command_def (HOL) "code_instance"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1134
    @{command_def (HOL) "code_monad"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1135
    @{command_def (HOL) "code_reserved"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1136
    @{command_def (HOL) "code_include"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1137
    @{command_def (HOL) "code_modulename"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1138
    @{command_def (HOL) "code_abort"} & : & @{text "theory \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1139
    @{command_def (HOL) "print_codesetup"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
31254
03a35fbc9dc6 documented print_codeproc command
haftmann
parents: 30865
diff changeset
  1140
    @{command_def (HOL) "print_codeproc"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1141
    @{attribute_def (HOL) code} & : & @{text attribute} \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1142
  \end{matharray}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1143
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1144
  \begin{rail}
34172
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1145
    'export\_code' ( constexpr + ) \\
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1146
      ( ( 'in' target ( 'module\_name' string ) ? \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1147
        ( 'file' ( string | '-' ) ) ? ( '(' args ')' ) ?) + ) ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1148
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1149
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1150
    'code\_thms' ( constexpr + ) ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1151
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1152
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1153
    'code\_deps' ( constexpr + ) ?
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1154
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1155
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1156
    const: term
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1157
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1158
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1159
    constexpr: ( const | 'name.*' | '*' )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1160
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1161
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1162
    typeconstructor: nameref
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1163
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1164
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1165
    class: nameref
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1166
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1167
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1168
    target: 'OCaml' | 'SML' | 'Haskell'
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1169
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1170
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1171
    'code\_datatype' const +
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1172
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1173
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1174
    'code\_const' (const + 'and') \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1175
      ( ( '(' target ( syntax ? + 'and' ) ')' ) + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1176
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1177
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1178
    'code\_type' (typeconstructor + 'and') \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1179
      ( ( '(' target ( syntax ? + 'and' ) ')' ) + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1180
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1181
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1182
    'code\_class' (class + 'and') \\
28687
150a8a1eae1a simplified syntax for class parameters
haftmann
parents: 28603
diff changeset
  1183
      ( ( '(' target \\ ( string ? + 'and' ) ')' ) + )
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1184
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1185
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1186
    'code\_instance' (( typeconstructor '::' class ) + 'and') \\
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1187
      ( ( '(' target ( '-' ? + 'and' ) ')' ) + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1188
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1189
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1190
    'code\_monad' const const target
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1191
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1192
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1193
    'code\_reserved' target ( string + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1194
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1195
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1196
    'code\_include' target ( string ( string | '-') )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1197
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1198
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1199
    'code\_modulename' target ( ( string string ) + )
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1200
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1201
27452
5c1fb7d262bf adjusted rep_datatype
haftmann
parents: 27123
diff changeset
  1202
    'code\_abort' ( const + )
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1203
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1204
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1205
    syntax: string | ( 'infix' | 'infixl' | 'infixr' ) nat string
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1206
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1207
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1208
    'code' ( 'del' ) ?
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1209
    ;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1210
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1211
    'code_unfold' ( 'del' ) ?
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1212
    ;
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1213
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1214
    'code_post' ( 'del' ) ?
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1215
    ;
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1216
  \end{rail}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1217
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1218
  \begin{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1219
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1220
  \item @{command (HOL) "export_code"} is the canonical interface for
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1221
  generating and serializing code: for a given list of constants, code
34172
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1222
  is generated for the specified target languages.  If no serialization
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1223
  instruction is given, only abstract code is generated internally.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1224
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1225
  Constants may be specified by giving them literally, referring to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1226
  all executable contants within a certain theory by giving @{text
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1227
  "name.*"}, or referring to \emph{all} executable constants currently
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1228
  available by giving @{text "*"}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1229
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1230
  By default, for each involved theory one corresponding name space
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1231
  module is generated.  Alternativly, a module name may be specified
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1232
  after the @{keyword "module_name"} keyword; then \emph{all} code is
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1233
  placed in this module.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1234
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1235
  For \emph{SML} and \emph{OCaml}, the file specification refers to a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1236
  single file; for \emph{Haskell}, it refers to a whole directory,
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1237
  where code is generated in multiple files reflecting the module
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1238
  hierarchy.  The file specification ``@{text "-"}'' denotes standard
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1239
  output.  For \emph{SML}, omitting the file specification compiles
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1240
  code internally in the context of the current ML session.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1241
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1242
  Serializers take an optional list of arguments in parentheses.  For
34172
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1243
  \emph{SML} and \emph{OCaml}, ``@{text no_signatures}`` omits
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1244
  explicit module signatures.
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1245
  
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1246
  For \emph{Haskell} a module name prefix may be given using the ``@{text
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1247
  "root:"}'' argument; ``@{text string_classes}'' adds a ``@{verbatim
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1248
  "deriving (Read, Show)"}'' clause to each appropriate datatype
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1249
  declaration.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1250
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1251
  \item @{command (HOL) "code_thms"} prints a list of theorems
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1252
  representing the corresponding program containing all given
34172
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1253
  constants.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1254
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1255
  \item @{command (HOL) "code_deps"} visualizes dependencies of
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1256
  theorems representing the corresponding program containing all given
34172
4301e9ea1c54 updated documentation
haftmann
parents: 33858
diff changeset
  1257
  constants.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1258
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1259
  \item @{command (HOL) "code_datatype"} specifies a constructor set
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1260
  for a logical type.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1261
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1262
  \item @{command (HOL) "code_const"} associates a list of constants
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1263
  with target-specific serializations; omitting a serialization
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1264
  deletes an existing serialization.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1265
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1266
  \item @{command (HOL) "code_type"} associates a list of type
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1267
  constructors with target-specific serializations; omitting a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1268
  serialization deletes an existing serialization.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1269
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1270
  \item @{command (HOL) "code_class"} associates a list of classes
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1271
  with target-specific class names; omitting a serialization deletes
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1272
  an existing serialization.  This applies only to \emph{Haskell}.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1273
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1274
  \item @{command (HOL) "code_instance"} declares a list of type
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1275
  constructor / class instance relations as ``already present'' for a
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1276
  given target.  Omitting a ``@{text "-"}'' deletes an existing
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1277
  ``already present'' declaration.  This applies only to
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1278
  \emph{Haskell}.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1279
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1280
  \item @{command (HOL) "code_monad"} provides an auxiliary mechanism
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1281
  to generate monadic code for Haskell.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1282
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1283
  \item @{command (HOL) "code_reserved"} declares a list of names as
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1284
  reserved for a given target, preventing it to be shadowed by any
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1285
  generated code.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1286
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1287
  \item @{command (HOL) "code_include"} adds arbitrary named content
27706
10a6ede68bc8 clarified
haftmann
parents: 27452
diff changeset
  1288
  (``include'') to generated code.  A ``@{text "-"}'' as last argument
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1289
  will remove an already added ``include''.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1290
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1291
  \item @{command (HOL) "code_modulename"} declares aliasings from one
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1292
  module name onto another.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1293
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1294
  \item @{command (HOL) "code_abort"} declares constants which are not
29560
fa6c5d62adf5 "code equation" replaces "defining equation"
haftmann
parents: 29114
diff changeset
  1295
  required to have a definition by means of code equations; if
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1296
  needed these are implemented by program abort instead.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1297
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1298
  \item @{attribute (HOL) code} explicitly selects (or with option
29560
fa6c5d62adf5 "code equation" replaces "defining equation"
haftmann
parents: 29114
diff changeset
  1299
  ``@{text "del"}'' deselects) a code equation for code
fa6c5d62adf5 "code equation" replaces "defining equation"
haftmann
parents: 29114
diff changeset
  1300
  generation.  Usually packages introducing code equations provide
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1301
  a reasonable default setup for selection.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1302
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1303
  \item @{attribute (HOL) code_inline} declares (or with
28562
4e74209f113e `code func` now just `code`
haftmann
parents: 27706
diff changeset
  1304
  option ``@{text "del"}'' removes) inlining theorems which are
29560
fa6c5d62adf5 "code equation" replaces "defining equation"
haftmann
parents: 29114
diff changeset
  1305
  applied as rewrite rules to any code equation during
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1306
  preprocessing.
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1307
31998
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1308
  \item @{attribute (HOL) code_post} declares (or with
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1309
  option ``@{text "del"}'' removes) theorems which are
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1310
  applied as rewrite rules to any result of an evaluation.
2c7a24f74db9 code attributes use common underscore convention
haftmann
parents: 31912
diff changeset
  1311
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1312
  \item @{command (HOL) "print_codesetup"} gives an overview on
31254
03a35fbc9dc6 documented print_codeproc command
haftmann
parents: 30865
diff changeset
  1313
  selected code equations and code generator datatypes.
03a35fbc9dc6 documented print_codeproc command
haftmann
parents: 30865
diff changeset
  1314
03a35fbc9dc6 documented print_codeproc command
haftmann
parents: 30865
diff changeset
  1315
  \item @{command (HOL) "print_codeproc"} prints the setup
03a35fbc9dc6 documented print_codeproc command
haftmann
parents: 30865
diff changeset
  1316
  of the code generator preprocessor.
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1317
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1318
  \end{description}
26849
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1319
*}
df50bc1249d7 converted HOL specific elements;
wenzelm
parents: 26840
diff changeset
  1320
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1321
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1322
section {* Definition by specification \label{sec:hol-specification} *}
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1323
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1324
text {*
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1325
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1326
    @{command_def (HOL) "specification"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1327
    @{command_def (HOL) "ax_specification"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1328
  \end{matharray}
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1329
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1330
  \begin{rail}
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1331
  ('specification' | 'ax\_specification') '(' (decl +) ')' \\ (thmdecl? prop +)
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1332
  ;
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1333
  decl: ((name ':')? term '(' 'overloaded' ')'?)
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1334
  \end{rail}
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1335
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1336
  \begin{description}
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1337
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1338
  \item @{command (HOL) "specification"}~@{text "decls \<phi>"} sets up a
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1339
  goal stating the existence of terms with the properties specified to
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1340
  hold for the constants given in @{text decls}.  After finishing the
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1341
  proof, the theory will be augmented with definitions for the given
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1342
  constants, as well as with theorems stating the properties for these
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1343
  constants.
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1344
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1345
  \item @{command (HOL) "ax_specification"}~@{text "decls \<phi>"} sets up
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1346
  a goal stating the existence of terms with the properties specified
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1347
  to hold for the constants given in @{text decls}.  After finishing
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1348
  the proof, the theory will be augmented with axioms expressing the
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1349
  properties given in the first place.
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1350
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1351
  \item @{text decl} declares a constant to be defined by the
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1352
  specification given.  The definition for the constant @{text c} is
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1353
  bound to the name @{text c_def} unless a theorem name is given in
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1354
  the declaration.  Overloaded constants should be declared as such.
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1355
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28752
diff changeset
  1356
  \end{description}
27045
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1357
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1358
  Whether to use @{command (HOL) "specification"} or @{command (HOL)
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1359
  "ax_specification"} is to some extent a matter of style.  @{command
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1360
  (HOL) "specification"} introduces no new axioms, and so by
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1361
  construction cannot introduce inconsistencies, whereas @{command
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1362
  (HOL) "ax_specification"} does introduce axioms, but only after the
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1363
  user has explicitly proven it to be safe.  A practical issue must be
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1364
  considered, though: After introducing two constants with the same
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1365
  properties using @{command (HOL) "specification"}, one can prove
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1366
  that the two constants are, in fact, equal.  If this might be a
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1367
  problem, one should use @{command (HOL) "ax_specification"}.
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1368
*}
4e7ecec1b685 moved (ax_)specification to end;
wenzelm
parents: 27041
diff changeset
  1369
26840
ec46381f149d added logic-specific sessions;
wenzelm
parents:
diff changeset
  1370
end