| author | blanchet | 
| Wed, 01 Jun 2011 10:29:43 +0200 | |
| changeset 43126 | a7db0afd5200 | 
| parent 43040 | 665623e695ea | 
| child 43270 | bc72c1ccc89e | 
| permissions | -rw-r--r-- | 
| 26840 | 1 | theory HOL_Specific | 
| 42651 | 2 | imports Base Main | 
| 26840 | 3 | begin | 
| 4 | ||
| 26852 | 5 | chapter {* Isabelle/HOL \label{ch:hol} *}
 | 
| 26849 | 6 | |
| 35744 | 7 | section {* Typedef axiomatization \label{sec:hol-typedef} *}
 | 
| 26849 | 8 | |
| 9 | text {*
 | |
| 10 |   \begin{matharray}{rcl}
 | |
| 35744 | 11 |     @{command_def (HOL) "typedef"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
 | 
| 26849 | 12 |   \end{matharray}
 | 
| 13 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 14 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 15 |     @@{command (HOL) typedef} altname? abstype '=' repset
 | 
| 26849 | 16 | ; | 
| 17 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 18 |     altname: '(' (@{syntax name} | @'open' | @'open' @{syntax name}) ')'
 | 
| 26849 | 19 | ; | 
| 42705 | 20 |     abstype: @{syntax typespec_sorts} @{syntax mixfix}?
 | 
| 26849 | 21 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 22 |     repset: @{syntax term} (@'morphisms' @{syntax name} @{syntax name})?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 23 | "} | 
| 26849 | 24 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 25 |   \begin{description}
 | 
| 42123 | 26 | |
| 35744 | 27 |   \item @{command (HOL) "typedef"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t = A"}
 | 
| 28 | axiomatizes a Gordon/HOL-style type definition in the background | |
| 29 | theory of the current context, depending on a non-emptiness result | |
| 30 |   of the set @{text A} (which needs to be proven interactively).
 | |
| 31 | ||
| 32 | The raw type may not depend on parameters or assumptions of the | |
| 33 | context --- this is logically impossible in Isabelle/HOL --- but the | |
| 34 | non-emptiness property can be local, potentially resulting in | |
| 35 | multiple interpretations in target contexts. Thus the established | |
| 36 |   bijection between the representing set @{text A} and the new type
 | |
| 37 |   @{text t} may semantically depend on local assumptions.
 | |
| 42123 | 38 | |
| 35744 | 39 |   By default, @{command (HOL) "typedef"} defines both a type @{text t}
 | 
| 40 | and a set (term constant) of the same name, unless an alternative | |
| 41 |   base name is given in parentheses, or the ``@{text "(open)"}''
 | |
| 42 | declaration is used to suppress a separate constant definition | |
| 43 |   altogether.  The injection from type to set is called @{text Rep_t},
 | |
| 44 |   its inverse @{text Abs_t} --- this may be changed via an explicit
 | |
| 45 |   @{keyword (HOL) "morphisms"} declaration.
 | |
| 42123 | 46 | |
| 26849 | 47 |   Theorems @{text Rep_t}, @{text Rep_t_inverse}, and @{text
 | 
| 48 | Abs_t_inverse} provide the most basic characterization as a | |
| 49 | corresponding injection/surjection pair (in both directions). Rules | |
| 50 |   @{text Rep_t_inject} and @{text Abs_t_inject} provide a slightly
 | |
| 51 | more convenient view on the injectivity part, suitable for automated | |
| 26894 | 52 |   proof tools (e.g.\ in @{attribute simp} or @{attribute iff}
 | 
| 53 |   declarations).  Rules @{text Rep_t_cases}/@{text Rep_t_induct}, and
 | |
| 54 |   @{text Abs_t_cases}/@{text Abs_t_induct} provide alternative views
 | |
| 55 | on surjectivity; these are already declared as set or type rules for | |
| 26849 | 56 |   the generic @{method cases} and @{method induct} methods.
 | 
| 42123 | 57 | |
| 35744 | 58 | An alternative name for the set definition (and other derived | 
| 59 | entities) may be specified in parentheses; the default is to use | |
| 60 |   @{text t} as indicated before.
 | |
| 26849 | 61 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 62 |   \end{description}
 | 
| 26849 | 63 | *} | 
| 64 | ||
| 65 | ||
| 66 | section {* Adhoc tuples *}
 | |
| 67 | ||
| 68 | text {*
 | |
| 69 |   \begin{matharray}{rcl}
 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 70 |     @{attribute_def (HOL) split_format}@{text "\<^sup>*"} & : & @{text attribute} \\
 | 
| 26849 | 71 |   \end{matharray}
 | 
| 72 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 73 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 74 |     @@{attribute (HOL) split_format} ('(' 'complete' ')')?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 75 | "} | 
| 26849 | 76 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 77 |   \begin{description}
 | 
| 42123 | 78 | |
| 40388 
cb9fd7dd641c
abolished obscure goal variant of [split_format] -- unused (cf. d1c14898fd04), unrelated to '(complete)' variant, and not at all canonical
 krauss parents: 
40255diff
changeset | 79 |   \item @{attribute (HOL) split_format}\ @{text "(complete)"} causes
 | 
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 80 | arguments in function applications to be represented canonically | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 81 | according to their tuple type structure. | 
| 26849 | 82 | |
| 40388 
cb9fd7dd641c
abolished obscure goal variant of [split_format] -- unused (cf. d1c14898fd04), unrelated to '(complete)' variant, and not at all canonical
 krauss parents: 
40255diff
changeset | 83 | Note that this operation tends to invent funny names for new local | 
| 
cb9fd7dd641c
abolished obscure goal variant of [split_format] -- unused (cf. d1c14898fd04), unrelated to '(complete)' variant, and not at all canonical
 krauss parents: 
40255diff
changeset | 84 | parameters introduced. | 
| 26849 | 85 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 86 |   \end{description}
 | 
| 26849 | 87 | *} | 
| 88 | ||
| 89 | ||
| 90 | section {* Records \label{sec:hol-record} *}
 | |
| 91 | ||
| 92 | text {*
 | |
| 93 | In principle, records merely generalize the concept of tuples, where | |
| 94 | components may be addressed by labels instead of just position. The | |
| 95 | logical infrastructure of records in Isabelle/HOL is slightly more | |
| 96 | advanced, though, supporting truly extensible record schemes. This | |
| 97 | admits operations that are polymorphic with respect to record | |
| 98 | extension, yielding ``object-oriented'' effects like (single) | |
| 99 |   inheritance.  See also \cite{NaraschewskiW-TPHOLs98} for more
 | |
| 100 | details on object-oriented verification and record subtyping in HOL. | |
| 101 | *} | |
| 102 | ||
| 103 | ||
| 104 | subsection {* Basic concepts *}
 | |
| 105 | ||
| 106 | text {*
 | |
| 107 |   Isabelle/HOL supports both \emph{fixed} and \emph{schematic} records
 | |
| 108 | at the level of terms and types. The notation is as follows: | |
| 109 | ||
| 110 |   \begin{center}
 | |
| 111 |   \begin{tabular}{l|l|l}
 | |
| 112 | & record terms & record types \\ \hline | |
| 113 |     fixed & @{text "\<lparr>x = a, y = b\<rparr>"} & @{text "\<lparr>x :: A, y :: B\<rparr>"} \\
 | |
| 114 |     schematic & @{text "\<lparr>x = a, y = b, \<dots> = m\<rparr>"} &
 | |
| 115 |       @{text "\<lparr>x :: A, y :: B, \<dots> :: M\<rparr>"} \\
 | |
| 116 |   \end{tabular}
 | |
| 117 |   \end{center}
 | |
| 118 | ||
| 119 |   \noindent The ASCII representation of @{text "\<lparr>x = a\<rparr>"} is @{text
 | |
| 120 | "(| x = a |)"}. | |
| 121 | ||
| 122 |   A fixed record @{text "\<lparr>x = a, y = b\<rparr>"} has field @{text x} of value
 | |
| 123 |   @{text a} and field @{text y} of value @{text b}.  The corresponding
 | |
| 124 |   type is @{text "\<lparr>x :: A, y :: B\<rparr>"}, assuming that @{text "a :: A"}
 | |
| 125 |   and @{text "b :: B"}.
 | |
| 126 | ||
| 127 |   A record scheme like @{text "\<lparr>x = a, y = b, \<dots> = m\<rparr>"} contains fields
 | |
| 128 |   @{text x} and @{text y} as before, but also possibly further fields
 | |
| 129 |   as indicated by the ``@{text "\<dots>"}'' notation (which is actually part
 | |
| 130 |   of the syntax).  The improper field ``@{text "\<dots>"}'' of a record
 | |
| 131 |   scheme is called the \emph{more part}.  Logically it is just a free
 | |
| 132 | variable, which is occasionally referred to as ``row variable'' in | |
| 133 | the literature. The more part of a record scheme may be | |
| 134 | instantiated by zero or more further components. For example, the | |
| 135 |   previous scheme may get instantiated to @{text "\<lparr>x = a, y = b, z =
 | |
| 26852 | 136 |   c, \<dots> = m'\<rparr>"}, where @{text m'} refers to a different more part.
 | 
| 26849 | 137 | Fixed records are special instances of record schemes, where | 
| 138 |   ``@{text "\<dots>"}'' is properly terminated by the @{text "() :: unit"}
 | |
| 139 |   element.  In fact, @{text "\<lparr>x = a, y = b\<rparr>"} is just an abbreviation
 | |
| 140 |   for @{text "\<lparr>x = a, y = b, \<dots> = ()\<rparr>"}.
 | |
| 42123 | 141 | |
| 26849 | 142 | \medskip Two key observations make extensible records in a simply | 
| 143 | typed language like HOL work out: | |
| 144 | ||
| 145 |   \begin{enumerate}
 | |
| 146 | ||
| 147 | \item the more part is internalized, as a free term or type | |
| 148 | variable, | |
| 149 | ||
| 26852 | 150 | \item field names are externalized, they cannot be accessed within | 
| 151 | the logic as first-class values. | |
| 26849 | 152 | |
| 153 |   \end{enumerate}
 | |
| 154 | ||
| 155 | \medskip In Isabelle/HOL record types have to be defined explicitly, | |
| 156 | fixing their field names and types, and their (optional) parent | |
| 157 | record. Afterwards, records may be formed using above syntax, while | |
| 158 | obeying the canonical order of fields as given by their declaration. | |
| 159 | The record package provides several standard operations like | |
| 160 | selectors and updates. The common setup for various generic proof | |
| 161 | tools enable succinct reasoning patterns. See also the Isabelle/HOL | |
| 162 |   tutorial \cite{isabelle-hol-book} for further instructions on using
 | |
| 163 | records in practice. | |
| 164 | *} | |
| 165 | ||
| 166 | ||
| 167 | subsection {* Record specifications *}
 | |
| 168 | ||
| 169 | text {*
 | |
| 170 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 171 |     @{command_def (HOL) "record"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 26849 | 172 |   \end{matharray}
 | 
| 173 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 174 |   @{rail "
 | 
| 42705 | 175 |     @@{command (HOL) record} @{syntax typespec_sorts} '=' \\
 | 
| 42704 | 176 |       (@{syntax type} '+')? (@{syntax constdecl} +)
 | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 177 | "} | 
| 26849 | 178 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 179 |   \begin{description}
 | 
| 26849 | 180 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 181 |   \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: 
28752diff
changeset | 182 |   \<dots> c\<^sub>n :: \<sigma>\<^sub>n"} defines extensible record type @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"},
 | 
| 26849 | 183 |   derived from the optional parent record @{text "\<tau>"} by adding new
 | 
| 184 |   field components @{text "c\<^sub>i :: \<sigma>\<^sub>i"} etc.
 | |
| 185 | ||
| 186 |   The type variables of @{text "\<tau>"} and @{text "\<sigma>\<^sub>i"} need to be
 | |
| 187 |   covered by the (distinct) parameters @{text "\<alpha>\<^sub>1, \<dots>,
 | |
| 188 |   \<alpha>\<^sub>m"}.  Type constructor @{text t} has to be new, while @{text
 | |
| 189 | \<tau>} needs to specify an instance of an existing record type. At | |
| 190 |   least one new field @{text "c\<^sub>i"} has to be specified.
 | |
| 191 | Basically, field names need to belong to a unique record. This is | |
| 192 | not a real restriction in practice, since fields are qualified by | |
| 193 | the record name internally. | |
| 194 | ||
| 195 |   The parent record specification @{text \<tau>} is optional; if omitted
 | |
| 196 |   @{text t} becomes a root record.  The hierarchy of all records
 | |
| 197 | declared within a theory context forms a forest structure, i.e.\ a | |
| 198 | set of trees starting with a root record each. There is no way to | |
| 199 | merge multiple parent records! | |
| 200 | ||
| 201 |   For convenience, @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"} is made a
 | |
| 202 |   type abbreviation for the fixed record type @{text "\<lparr>c\<^sub>1 ::
 | |
| 203 |   \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n\<rparr>"}, likewise is @{text
 | |
| 204 | "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m, \<zeta>) t_scheme"} made an abbreviation for | |
| 205 |   @{text "\<lparr>c\<^sub>1 :: \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n, \<dots> ::
 | |
| 206 | \<zeta>\<rparr>"}. | |
| 207 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 208 |   \end{description}
 | 
| 26849 | 209 | *} | 
| 210 | ||
| 211 | ||
| 212 | subsection {* Record operations *}
 | |
| 213 | ||
| 214 | text {*
 | |
| 215 | Any record definition of the form presented above produces certain | |
| 216 | standard operations. Selectors and updates are provided for any | |
| 217 |   field, including the improper one ``@{text more}''.  There are also
 | |
| 218 | cumulative record constructor functions. To simplify the | |
| 219 |   presentation below, we assume for now that @{text "(\<alpha>\<^sub>1, \<dots>,
 | |
| 220 |   \<alpha>\<^sub>m) t"} is a root record with fields @{text "c\<^sub>1 ::
 | |
| 221 | \<sigma>\<^sub>1, \<dots>, c\<^sub>n :: \<sigma>\<^sub>n"}. | |
| 222 | ||
| 223 |   \medskip \textbf{Selectors} and \textbf{updates} are available for
 | |
| 224 |   any field (including ``@{text more}''):
 | |
| 225 | ||
| 226 |   \begin{matharray}{lll}
 | |
| 26852 | 227 |     @{text "c\<^sub>i"} & @{text "::"} & @{text "\<lparr>\<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<sigma>\<^sub>i"} \\
 | 
| 228 |     @{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 | 229 |   \end{matharray}
 | 
| 230 | ||
| 231 |   There is special syntax for application of updates: @{text "r\<lparr>x :=
 | |
| 232 |   a\<rparr>"} abbreviates term @{text "x_update a r"}.  Further notation for
 | |
| 233 |   repeated updates is also available: @{text "r\<lparr>x := a\<rparr>\<lparr>y := b\<rparr>\<lparr>z :=
 | |
| 234 |   c\<rparr>"} may be written @{text "r\<lparr>x := a, y := b, z := c\<rparr>"}.  Note that
 | |
| 235 | because of postfix notation the order of fields shown here is | |
| 236 | reverse than in the actual term. Since repeated updates are just | |
| 237 |   function applications, fields may be freely permuted in @{text "\<lparr>x
 | |
| 238 | := a, y := b, z := c\<rparr>"}, as far as logical equality is concerned. | |
| 239 | Thus commutativity of independent updates can be proven within the | |
| 240 | logic for any two fields, but not as a general theorem. | |
| 241 | ||
| 242 |   \medskip The \textbf{make} operation provides a cumulative record
 | |
| 243 | constructor function: | |
| 244 | ||
| 245 |   \begin{matharray}{lll}
 | |
| 26852 | 246 |     @{text "t.make"} & @{text "::"} & @{text "\<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
 | 
| 26849 | 247 |   \end{matharray}
 | 
| 248 | ||
| 249 | \medskip We now reconsider the case of non-root records, which are | |
| 250 | derived of some parent. In general, the latter may depend on | |
| 251 |   another parent as well, resulting in a list of \emph{ancestor
 | |
| 252 | records}. Appending the lists of fields of all ancestors results in | |
| 253 | a certain field prefix. The record package automatically takes care | |
| 254 | of this by lifting operations over this context of ancestor fields. | |
| 255 |   Assuming that @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>m) t"} has ancestor
 | |
| 256 |   fields @{text "b\<^sub>1 :: \<rho>\<^sub>1, \<dots>, b\<^sub>k :: \<rho>\<^sub>k"},
 | |
| 257 | the above record operations will get the following types: | |
| 258 | ||
| 26852 | 259 | \medskip | 
| 260 |   \begin{tabular}{lll}
 | |
| 261 |     @{text "c\<^sub>i"} & @{text "::"} & @{text "\<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> \<sigma>\<^sub>i"} \\
 | |
| 42123 | 262 |     @{text "c\<^sub>i_update"} & @{text "::"} & @{text "\<sigma>\<^sub>i \<Rightarrow>
 | 
| 26852 | 263 | \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr> \<Rightarrow> | 
| 264 | \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr>"} \\ | |
| 265 |     @{text "t.make"} & @{text "::"} & @{text "\<rho>\<^sub>1 \<Rightarrow> \<dots> \<rho>\<^sub>k \<Rightarrow> \<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow>
 | |
| 266 | \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\ | |
| 267 |   \end{tabular}
 | |
| 268 | \medskip | |
| 26849 | 269 | |
| 26852 | 270 | \noindent Some further operations address the extension aspect of a | 
| 26849 | 271 |   derived record scheme specifically: @{text "t.fields"} produces a
 | 
| 272 | record fragment consisting of exactly the new fields introduced here | |
| 273 |   (the result may serve as a more part elsewhere); @{text "t.extend"}
 | |
| 274 |   takes a fixed record and adds a given more part; @{text
 | |
| 275 | "t.truncate"} restricts a record scheme to a fixed record. | |
| 276 | ||
| 26852 | 277 | \medskip | 
| 278 |   \begin{tabular}{lll}
 | |
| 279 |     @{text "t.fields"} & @{text "::"} & @{text "\<sigma>\<^sub>1 \<Rightarrow> \<dots> \<sigma>\<^sub>n \<Rightarrow> \<lparr>\<^vec>c :: \<^vec>\<sigma>\<rparr>"} \\
 | |
| 280 |     @{text "t.extend"} & @{text "::"} & @{text "\<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>\<rparr> \<Rightarrow>
 | |
| 281 | \<zeta> \<Rightarrow> \<lparr>\<^vec>b :: \<^vec>\<rho>, \<^vec>c :: \<^vec>\<sigma>, \<dots> :: \<zeta>\<rparr>"} \\ | |
| 282 |     @{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>"} \\
 | |
| 283 |   \end{tabular}
 | |
| 284 | \medskip | |
| 26849 | 285 | |
| 286 |   \noindent Note that @{text "t.make"} and @{text "t.fields"} coincide
 | |
| 287 | for root records. | |
| 288 | *} | |
| 289 | ||
| 290 | ||
| 291 | subsection {* Derived rules and proof tools *}
 | |
| 292 | ||
| 293 | text {*
 | |
| 294 | The record package proves several results internally, declaring | |
| 295 | these facts to appropriate proof tools. This enables users to | |
| 296 | reason about record structures quite conveniently. Assume that | |
| 297 |   @{text t} is a record type as specified above.
 | |
| 298 | ||
| 299 |   \begin{enumerate}
 | |
| 42123 | 300 | |
| 26849 | 301 | \item Standard conversions for selectors or updates applied to | 
| 302 | record constructor terms are made part of the default Simplifier | |
| 303 | context; thus proofs by reduction of basic operations merely require | |
| 304 |   the @{method simp} method without further arguments.  These rules
 | |
| 305 |   are available as @{text "t.simps"}, too.
 | |
| 42123 | 306 | |
| 26849 | 307 | \item Selectors applied to updated records are automatically reduced | 
| 308 | by an internal simplification procedure, which is also part of the | |
| 309 | standard Simplifier setup. | |
| 310 | ||
| 311 |   \item Inject equations of a form analogous to @{prop "(x, y) = (x',
 | |
| 312 | y') \<equiv> x = x' \<and> y = y'"} are declared to the Simplifier and Classical | |
| 313 |   Reasoner as @{attribute iff} rules.  These rules are available as
 | |
| 314 |   @{text "t.iffs"}.
 | |
| 315 | ||
| 316 |   \item The introduction rule for record equality analogous to @{text
 | |
| 317 | "x r = x r' \<Longrightarrow> y r = y r' \<dots> \<Longrightarrow> r = r'"} is declared to the Simplifier, | |
| 318 |   and as the basic rule context as ``@{attribute intro}@{text "?"}''.
 | |
| 319 |   The rule is called @{text "t.equality"}.
 | |
| 320 | ||
| 321 | \item Representations of arbitrary record expressions as canonical | |
| 322 |   constructor terms are provided both in @{method cases} and @{method
 | |
| 323 | induct} format (cf.\ the generic proof methods of the same name, | |
| 324 |   \secref{sec:cases-induct}).  Several variations are available, for
 | |
| 325 | fixed records, record schemes, more parts etc. | |
| 42123 | 326 | |
| 26849 | 327 | The generic proof methods are sufficiently smart to pick the most | 
| 328 | sensible rule according to the type of the indicated record | |
| 329 |   expression: users just need to apply something like ``@{text "(cases
 | |
| 330 | r)"}'' to a certain proof problem. | |
| 331 | ||
| 332 |   \item The derived record operations @{text "t.make"}, @{text
 | |
| 333 |   "t.fields"}, @{text "t.extend"}, @{text "t.truncate"} are \emph{not}
 | |
| 334 | treated automatically, but usually need to be expanded by hand, | |
| 335 |   using the collective fact @{text "t.defs"}.
 | |
| 336 | ||
| 337 |   \end{enumerate}
 | |
| 338 | *} | |
| 339 | ||
| 340 | ||
| 341 | section {* Datatypes \label{sec:hol-datatype} *}
 | |
| 342 | ||
| 343 | text {*
 | |
| 344 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 345 |     @{command_def (HOL) "datatype"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 41396 | 346 |     @{command_def (HOL) "rep_datatype"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
 | 
| 26849 | 347 |   \end{matharray}
 | 
| 348 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 349 |   @{rail "
 | 
| 42704 | 350 |     @@{command (HOL) datatype} (spec + @'and')
 | 
| 26849 | 351 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 352 |     @@{command (HOL) rep_datatype} ('(' (@{syntax name} +) ')')? (@{syntax term} +)
 | 
| 26849 | 353 | ; | 
| 354 | ||
| 42704 | 355 |     spec: @{syntax parname}? @{syntax typespec} @{syntax mixfix}? '=' (cons + '|')
 | 
| 26849 | 356 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 357 |     cons: @{syntax name} (@{syntax type} * ) @{syntax mixfix}?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 358 | "} | 
| 26849 | 359 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 360 |   \begin{description}
 | 
| 26849 | 361 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 362 |   \item @{command (HOL) "datatype"} defines inductive datatypes in
 | 
| 26849 | 363 | HOL. | 
| 364 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 365 |   \item @{command (HOL) "rep_datatype"} represents existing types as
 | 
| 26849 | 366 | inductive ones, generating the standard infrastructure of derived | 
| 367 | concepts (primitive recursion etc.). | |
| 368 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 369 |   \end{description}
 | 
| 26849 | 370 | |
| 371 | The induction and exhaustion theorems generated provide case names | |
| 372 | according to the constructors involved, while parameters are named | |
| 373 |   after the types (see also \secref{sec:cases-induct}).
 | |
| 374 | ||
| 375 |   See \cite{isabelle-HOL} for more details on datatypes, but beware of
 | |
| 376 | the old-style theory syntax being used there! Apart from proper | |
| 377 | proof methods for case-analysis and induction, there are also | |
| 378 |   emulations of ML tactics @{method (HOL) case_tac} and @{method (HOL)
 | |
| 379 |   induct_tac} available, see \secref{sec:hol-induct-tac}; these admit
 | |
| 380 | to refer directly to the internal structure of subgoals (including | |
| 381 | internally bound parameters). | |
| 382 | *} | |
| 383 | ||
| 384 | ||
| 41396 | 385 | section {* Functorial structure of types *}
 | 
| 386 | ||
| 387 | text {*
 | |
| 388 |   \begin{matharray}{rcl}
 | |
| 41505 
6d19301074cf
"enriched_type" replaces less specific "type_lifting"
 haftmann parents: 
41396diff
changeset | 389 |     @{command_def (HOL) "enriched_type"} & : & @{text "local_theory \<rightarrow> proof(prove)"}
 | 
| 41396 | 390 |   \end{matharray}
 | 
| 391 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 392 |   @{rail "
 | 
| 42617 | 393 |     @@{command (HOL) enriched_type} (@{syntax name} ':')? @{syntax term}
 | 
| 41396 | 394 | ; | 
| 42617 | 395 | "} | 
| 41396 | 396 | |
| 397 |   \begin{description}
 | |
| 398 | ||
| 42617 | 399 |   \item @{command (HOL) "enriched_type"}~@{text "prefix: m"} allows to
 | 
| 400 | prove and register properties about the functorial structure of type | |
| 401 | constructors. These properties then can be used by other packages | |
| 402 | to deal with those type constructors in certain type constructions. | |
| 403 | Characteristic theorems are noted in the current local theory. By | |
| 404 | default, they are prefixed with the base name of the type | |
| 405 | constructor, an explicit prefix can be given alternatively. | |
| 41396 | 406 | |
| 407 |   The given term @{text "m"} is considered as \emph{mapper} for the
 | |
| 408 | corresponding type constructor and must conform to the following | |
| 409 | type pattern: | |
| 410 | ||
| 411 |   \begin{matharray}{lll}
 | |
| 412 |     @{text "m"} & @{text "::"} &
 | |
| 413 |       @{text "\<sigma>\<^isub>1 \<Rightarrow> \<dots> \<sigma>\<^isub>k \<Rightarrow> (\<^vec>\<alpha>\<^isub>n) t \<Rightarrow> (\<^vec>\<beta>\<^isub>n) t"} \\
 | |
| 414 |   \end{matharray}
 | |
| 415 | ||
| 416 |   \noindent where @{text t} is the type constructor, @{text
 | |
| 417 |   "\<^vec>\<alpha>\<^isub>n"} and @{text "\<^vec>\<beta>\<^isub>n"} are distinct
 | |
| 418 |   type variables free in the local theory and @{text "\<sigma>\<^isub>1"},
 | |
| 419 |   \ldots, @{text "\<sigma>\<^isub>k"} is a subsequence of @{text "\<alpha>\<^isub>1 \<Rightarrow>
 | |
| 420 |   \<beta>\<^isub>1"}, @{text "\<beta>\<^isub>1 \<Rightarrow> \<alpha>\<^isub>1"}, \ldots,
 | |
| 421 |   @{text "\<alpha>\<^isub>n \<Rightarrow> \<beta>\<^isub>n"}, @{text "\<beta>\<^isub>n \<Rightarrow>
 | |
| 422 | \<alpha>\<^isub>n"}. | |
| 423 | ||
| 424 |   \end{description}
 | |
| 425 | *} | |
| 426 | ||
| 427 | ||
| 26849 | 428 | section {* Recursive functions \label{sec:recursion} *}
 | 
| 429 | ||
| 430 | text {*
 | |
| 431 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 432 |     @{command_def (HOL) "primrec"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 433 |     @{command_def (HOL) "fun"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 434 |     @{command_def (HOL) "function"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 435 |     @{command_def (HOL) "termination"} & : & @{text "local_theory \<rightarrow> proof(prove)"} \\
 | 
| 26849 | 436 |   \end{matharray}
 | 
| 437 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 438 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 439 |     @@{command (HOL) primrec} @{syntax target}? @{syntax \"fixes\"} @'where' equations
 | 
| 26849 | 440 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 441 |     (@@{command (HOL) fun} | @@{command (HOL) function}) @{syntax target}? functionopts?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 442 |       @{syntax \"fixes\"} \\ @'where' equations
 | 
| 26849 | 443 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 444 | |
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 445 |     equations: (@{syntax thmdecl}? @{syntax prop} + '|')
 | 
| 26849 | 446 | ; | 
| 41846 
b368a7aee46a
removed support for tail-recursion from function package (now implemented by partial_function)
 krauss parents: 
41506diff
changeset | 447 |     functionopts: '(' (('sequential' | 'domintros') + ',') ')'
 | 
| 26849 | 448 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 449 |     @@{command (HOL) termination} @{syntax term}?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 450 | "} | 
| 26849 | 451 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 452 |   \begin{description}
 | 
| 26849 | 453 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 454 |   \item @{command (HOL) "primrec"} defines primitive recursive
 | 
| 26849 | 455 |   functions over datatypes, see also \cite{isabelle-HOL}.
 | 
| 456 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 457 |   \item @{command (HOL) "function"} defines functions by general
 | 
| 26849 | 458 | wellfounded recursion. A detailed description with examples can be | 
| 459 |   found in \cite{isabelle-function}. The function is specified by a
 | |
| 460 | set of (possibly conditional) recursive equations with arbitrary | |
| 461 | pattern matching. The command generates proof obligations for the | |
| 462 | completeness and the compatibility of patterns. | |
| 463 | ||
| 464 | The defined function is considered partial, and the resulting | |
| 465 |   simplification rules (named @{text "f.psimps"}) and induction rule
 | |
| 466 |   (named @{text "f.pinduct"}) are guarded by a generated domain
 | |
| 467 |   predicate @{text "f_dom"}. The @{command (HOL) "termination"}
 | |
| 468 | command can then be used to establish that the function is total. | |
| 469 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 470 |   \item @{command (HOL) "fun"} is a shorthand notation for ``@{command
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 471 |   (HOL) "function"}~@{text "(sequential)"}, followed by automated
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 472 | proof attempts regarding pattern matching and termination. See | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 473 |   \cite{isabelle-function} for further details.
 | 
| 26849 | 474 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 475 |   \item @{command (HOL) "termination"}~@{text f} commences a
 | 
| 26849 | 476 |   termination proof for the previously defined function @{text f}.  If
 | 
| 477 | this is omitted, the command refers to the most recent function | |
| 478 | definition. After the proof is closed, the recursive equations and | |
| 479 | the induction principle is established. | |
| 480 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 481 |   \end{description}
 | 
| 26849 | 482 | |
| 27452 | 483 |   Recursive definitions introduced by the @{command (HOL) "function"}
 | 
| 484 | command accommodate | |
| 26849 | 485 |   reasoning by induction (cf.\ \secref{sec:cases-induct}): rule @{text
 | 
| 486 |   "c.induct"} (where @{text c} is the name of the function definition)
 | |
| 487 | refers to a specific induction rule, with parameters named according | |
| 33857 | 488 | to the user-specified equations. Cases are numbered (starting from 1). | 
| 489 | ||
| 490 |   For @{command (HOL) "primrec"}, the induction principle coincides
 | |
| 27452 | 491 | with structural recursion on the datatype the recursion is carried | 
| 492 | out. | |
| 26849 | 493 | |
| 494 | The equations provided by these packages may be referred later as | |
| 495 |   theorem list @{text "f.simps"}, where @{text f} is the (collective)
 | |
| 496 | name of the functions defined. Individual equations may be named | |
| 497 | explicitly as well. | |
| 498 | ||
| 499 |   The @{command (HOL) "function"} command accepts the following
 | |
| 500 | options. | |
| 501 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 502 |   \begin{description}
 | 
| 26849 | 503 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 504 |   \item @{text sequential} enables a preprocessor which disambiguates
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 505 | overlapping patterns by making them mutually disjoint. Earlier | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 506 | equations take precedence over later ones. This allows to give the | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 507 | specification in a format very similar to functional programming. | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 508 | Note that the resulting simplification and induction rules | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 509 | correspond to the transformed specification, not the one given | 
| 26849 | 510 | originally. This usually means that each equation given by the user | 
| 36139 | 511 | may result in several theorems. Also note that this automatic | 
| 26849 | 512 | transformation only works for ML-style datatype patterns. | 
| 513 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 514 |   \item @{text domintros} enables the automated generation of
 | 
| 26849 | 515 | introduction rules for the domain predicate. While mostly not | 
| 516 | needed, they can be helpful in some proofs about partial functions. | |
| 517 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 518 |   \end{description}
 | 
| 26849 | 519 | *} | 
| 520 | ||
| 521 | ||
| 522 | subsection {* Proof methods related to recursive definitions *}
 | |
| 523 | ||
| 524 | text {*
 | |
| 525 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 526 |     @{method_def (HOL) pat_completeness} & : & @{text method} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 527 |     @{method_def (HOL) relation} & : & @{text method} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 528 |     @{method_def (HOL) lexicographic_order} & : & @{text method} \\
 | 
| 33858 | 529 |     @{method_def (HOL) size_change} & : & @{text method} \\
 | 
| 26849 | 530 |   \end{matharray}
 | 
| 531 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 532 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 533 |     @@{method (HOL) relation} @{syntax term}
 | 
| 26849 | 534 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 535 |     @@{method (HOL) lexicographic_order} (@{syntax clasimpmod} * )
 | 
| 26849 | 536 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 537 |     @@{method (HOL) size_change} ( orders (@{syntax clasimpmod} * ) )
 | 
| 33858 | 538 | ; | 
| 539 | orders: ( 'max' | 'min' | 'ms' ) * | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 540 | "} | 
| 26849 | 541 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 542 |   \begin{description}
 | 
| 26849 | 543 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 544 |   \item @{method (HOL) pat_completeness} is a specialized method to
 | 
| 26849 | 545 | solve goals regarding the completeness of pattern matching, as | 
| 546 |   required by the @{command (HOL) "function"} package (cf.\
 | |
| 547 |   \cite{isabelle-function}).
 | |
| 548 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 549 |   \item @{method (HOL) relation}~@{text R} introduces a termination
 | 
| 26849 | 550 |   proof using the relation @{text R}.  The resulting proof state will
 | 
| 551 |   contain goals expressing that @{text R} is wellfounded, and that the
 | |
| 552 |   arguments of recursive calls decrease with respect to @{text R}.
 | |
| 553 | Usually, this method is used as the initial proof step of manual | |
| 554 | termination proofs. | |
| 555 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 556 |   \item @{method (HOL) "lexicographic_order"} attempts a fully
 | 
| 26849 | 557 | automated termination proof by searching for a lexicographic | 
| 558 | combination of size measures on the arguments of the function. The | |
| 559 |   method accepts the same arguments as the @{method auto} method,
 | |
| 560 | which it uses internally to prove local descents. The same context | |
| 561 |   modifiers as for @{method auto} are accepted, see
 | |
| 562 |   \secref{sec:clasimp}.
 | |
| 563 | ||
| 564 | In case of failure, extensive information is printed, which can help | |
| 565 |   to analyse the situation (cf.\ \cite{isabelle-function}).
 | |
| 566 | ||
| 33858 | 567 |   \item @{method (HOL) "size_change"} also works on termination goals,
 | 
| 568 | using a variation of the size-change principle, together with a | |
| 569 |   graph decomposition technique (see \cite{krauss_phd} for details).
 | |
| 570 |   Three kinds of orders are used internally: @{text max}, @{text min},
 | |
| 571 |   and @{text ms} (multiset), which is only available when the theory
 | |
| 572 |   @{text Multiset} is loaded. When no order kinds are given, they are
 | |
| 573 | tried in order. The search for a termination proof uses SAT solving | |
| 574 | internally. | |
| 575 | ||
| 576 |  For local descent proofs, the same context modifiers as for @{method
 | |
| 577 |   auto} are accepted, see \secref{sec:clasimp}.
 | |
| 578 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 579 |   \end{description}
 | 
| 26849 | 580 | *} | 
| 581 | ||
| 40171 | 582 | subsection {* Functions with explicit partiality *}
 | 
| 583 | ||
| 584 | text {*
 | |
| 585 |   \begin{matharray}{rcl}
 | |
| 586 |     @{command_def (HOL) "partial_function"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | |
| 587 |     @{attribute_def (HOL) "partial_function_mono"} & : & @{text attribute} \\
 | |
| 588 |   \end{matharray}
 | |
| 589 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 590 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 591 |     @@{command (HOL) partial_function} @{syntax target}?
 | 
| 42617 | 592 |       '(' @{syntax nameref} ')' @{syntax \"fixes\"} \\
 | 
| 593 |       @'where' @{syntax thmdecl}? @{syntax prop}
 | |
| 594 | "} | |
| 40171 | 595 | |
| 596 |   \begin{description}
 | |
| 597 | ||
| 42617 | 598 |   \item @{command (HOL) "partial_function"}~@{text "(mode)"} defines
 | 
| 599 | recursive functions based on fixpoints in complete partial | |
| 600 | orders. No termination proof is required from the user or | |
| 601 | constructed internally. Instead, the possibility of non-termination | |
| 602 | is modelled explicitly in the result type, which contains an | |
| 603 | explicit bottom element. | |
| 40171 | 604 | |
| 605 | Pattern matching and mutual recursion are currently not supported. | |
| 606 | Thus, the specification consists of a single function described by a | |
| 607 | single recursive equation. | |
| 608 | ||
| 609 | There are no fixed syntactic restrictions on the body of the | |
| 610 | function, but the induced functional must be provably monotonic | |
| 611 | wrt.\ the underlying order. The monotonicitity proof is performed | |
| 612 | internally, and the definition is rejected when it fails. The proof | |
| 613 | can be influenced by declaring hints using the | |
| 614 |   @{attribute (HOL) partial_function_mono} attribute.
 | |
| 615 | ||
| 616 |   The mandatory @{text mode} argument specifies the mode of operation
 | |
| 617 | of the command, which directly corresponds to a complete partial | |
| 618 | order on the result type. By default, the following modes are | |
| 42123 | 619 | defined: | 
| 40171 | 620 | |
| 621 |   \begin{description}
 | |
| 622 |   \item @{text option} defines functions that map into the @{type
 | |
| 623 |   option} type. Here, the value @{term None} is used to model a
 | |
| 624 |   non-terminating computation. Monotonicity requires that if @{term
 | |
| 625 | None} is returned by a recursive call, then the overall result | |
| 626 |   must also be @{term None}. This is best achieved through the use of
 | |
| 627 |   the monadic operator @{const "Option.bind"}.
 | |
| 42123 | 628 | |
| 40171 | 629 |   \item @{text tailrec} defines functions with an arbitrary result
 | 
| 630 |   type and uses the slightly degenerated partial order where @{term
 | |
| 631 | "undefined"} is the bottom element. Now, monotonicity requires that | |
| 632 |   if @{term undefined} is returned by a recursive call, then the
 | |
| 633 |   overall result must also be @{term undefined}. In practice, this is
 | |
| 634 | only satisfied when each recursive call is a tail call, whose result | |
| 635 | is directly returned. Thus, this mode of operation allows the | |
| 636 | definition of arbitrary tail-recursive functions. | |
| 637 |   \end{description}
 | |
| 638 | ||
| 639 | Experienced users may define new modes by instantiating the locale | |
| 640 |   @{const "partial_function_definitions"} appropriately.
 | |
| 641 | ||
| 642 |   \item @{attribute (HOL) partial_function_mono} declares rules for
 | |
| 643 | use in the internal monononicity proofs of partial function | |
| 644 | definitions. | |
| 645 | ||
| 646 |   \end{description}
 | |
| 647 | ||
| 648 | *} | |
| 26849 | 649 | |
| 650 | subsection {* Old-style recursive function definitions (TFL) *}
 | |
| 651 | ||
| 652 | text {*
 | |
| 653 |   The old TFL commands @{command (HOL) "recdef"} and @{command (HOL)
 | |
| 654 |   "recdef_tc"} for defining recursive are mostly obsolete; @{command
 | |
| 655 |   (HOL) "function"} or @{command (HOL) "fun"} should be used instead.
 | |
| 656 | ||
| 657 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 658 |     @{command_def (HOL) "recdef"} & : & @{text "theory \<rightarrow> theory)"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 659 |     @{command_def (HOL) "recdef_tc"}@{text "\<^sup>*"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
 | 
| 26849 | 660 |   \end{matharray}
 | 
| 661 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 662 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 663 |     @@{command (HOL) recdef} ('(' @'permissive' ')')? \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 664 |       @{syntax name} @{syntax term} (@{syntax prop} +) hints?
 | 
| 26849 | 665 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 666 |     recdeftc @{syntax thmdecl}? tc
 | 
| 26849 | 667 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 668 |     hints: '(' @'hints' ( recdefmod * ) ')'
 | 
| 26849 | 669 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 670 |     recdefmod: (('recdef_simp' | 'recdef_cong' | 'recdef_wf')
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 671 |       (() | 'add' | 'del') ':' @{syntax thmrefs}) | @{syntax clasimpmod}
 | 
| 26849 | 672 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 673 |     tc: @{syntax nameref} ('(' @{syntax nat} ')')?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 674 | "} | 
| 26849 | 675 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 676 |   \begin{description}
 | 
| 42123 | 677 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 678 |   \item @{command (HOL) "recdef"} defines general well-founded
 | 
| 26849 | 679 | recursive functions (using the TFL package), see also | 
| 680 |   \cite{isabelle-HOL}.  The ``@{text "(permissive)"}'' option tells
 | |
| 681 | TFL to recover from failed proof attempts, returning unfinished | |
| 682 |   results.  The @{text recdef_simp}, @{text recdef_cong}, and @{text
 | |
| 683 | recdef_wf} hints refer to auxiliary rules to be used in the internal | |
| 684 |   automated proof process of TFL.  Additional @{syntax clasimpmod}
 | |
| 685 |   declarations (cf.\ \secref{sec:clasimp}) may be given to tune the
 | |
| 686 |   context of the Simplifier (cf.\ \secref{sec:simplifier}) and
 | |
| 687 |   Classical reasoner (cf.\ \secref{sec:classical}).
 | |
| 42123 | 688 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 689 |   \item @{command (HOL) "recdef_tc"}~@{text "c (i)"} recommences the
 | 
| 26849 | 690 |   proof for leftover termination condition number @{text i} (default
 | 
| 691 |   1) as generated by a @{command (HOL) "recdef"} definition of
 | |
| 692 |   constant @{text c}.
 | |
| 42123 | 693 | |
| 26849 | 694 |   Note that in most cases, @{command (HOL) "recdef"} is able to finish
 | 
| 695 | its internal proofs without manual intervention. | |
| 696 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 697 |   \end{description}
 | 
| 26849 | 698 | |
| 699 |   \medskip Hints for @{command (HOL) "recdef"} may be also declared
 | |
| 700 | globally, using the following attributes. | |
| 701 | ||
| 702 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 703 |     @{attribute_def (HOL) recdef_simp} & : & @{text attribute} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 704 |     @{attribute_def (HOL) recdef_cong} & : & @{text attribute} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 705 |     @{attribute_def (HOL) recdef_wf} & : & @{text attribute} \\
 | 
| 26849 | 706 |   \end{matharray}
 | 
| 707 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 708 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 709 |     (@@{attribute (HOL) recdef_simp} | @@{attribute (HOL) recdef_cong} |
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 710 |       @@{attribute (HOL) recdef_wf}) (() | 'add' | 'del')
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 711 | "} | 
| 26849 | 712 | *} | 
| 713 | ||
| 714 | ||
| 715 | section {* Inductive and coinductive definitions \label{sec:hol-inductive} *}
 | |
| 716 | ||
| 717 | text {*
 | |
| 718 |   An \textbf{inductive definition} specifies the least predicate (or
 | |
| 719 |   set) @{text R} closed under given rules: applying a rule to elements
 | |
| 720 |   of @{text R} yields a result within @{text R}.  For example, a
 | |
| 721 | structural operational semantics is an inductive definition of an | |
| 722 | evaluation relation. | |
| 723 | ||
| 724 |   Dually, a \textbf{coinductive definition} specifies the greatest
 | |
| 725 |   predicate~/ set @{text R} that is consistent with given rules: every
 | |
| 726 |   element of @{text R} can be seen as arising by applying a rule to
 | |
| 727 |   elements of @{text R}.  An important example is using bisimulation
 | |
| 728 | relations to formalise equivalence of processes and infinite data | |
| 729 | structures. | |
| 730 | ||
| 731 | \medskip The HOL package is related to the ZF one, which is | |
| 732 |   described in a separate paper,\footnote{It appeared in CADE
 | |
| 733 |   \cite{paulson-CADE}; a longer version is distributed with Isabelle.}
 | |
| 734 | which you should refer to in case of difficulties. The package is | |
| 735 | simpler than that of ZF thanks to implicit type-checking in HOL. | |
| 736 | The types of the (co)inductive predicates (or sets) determine the | |
| 737 | domain of the fixedpoint definition, and the package does not have | |
| 738 | to use inference rules for type-checking. | |
| 739 | ||
| 740 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 741 |     @{command_def (HOL) "inductive"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 742 |     @{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: 
28760diff
changeset | 743 |     @{command_def (HOL) "coinductive"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 744 |     @{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: 
28760diff
changeset | 745 |     @{attribute_def (HOL) mono} & : & @{text attribute} \\
 | 
| 26849 | 746 |   \end{matharray}
 | 
| 747 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 748 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 749 |     (@@{command (HOL) inductive} | @@{command (HOL) inductive_set} |
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 750 |       @@{command (HOL) coinductive} | @@{command (HOL) coinductive_set})
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 751 |     @{syntax target}? @{syntax \"fixes\"} (@'for' @{syntax \"fixes\"})? \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 752 |     (@'where' clauses)? (@'monos' @{syntax thmrefs})?
 | 
| 26849 | 753 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 754 |     clauses: (@{syntax thmdecl}? @{syntax prop} + '|')
 | 
| 26849 | 755 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 756 |     @@{attribute (HOL) mono} (() | 'add' | 'del')
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 757 | "} | 
| 26849 | 758 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 759 |   \begin{description}
 | 
| 26849 | 760 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 761 |   \item @{command (HOL) "inductive"} and @{command (HOL)
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 762 | "coinductive"} define (co)inductive predicates from the | 
| 26849 | 763 |   introduction rules given in the @{keyword "where"} part.  The
 | 
| 764 |   optional @{keyword "for"} part contains a list of parameters of the
 | |
| 765 | (co)inductive predicates that remain fixed throughout the | |
| 766 |   definition.  The optional @{keyword "monos"} section contains
 | |
| 767 |   \emph{monotonicity theorems}, which are required for each operator
 | |
| 768 | applied to a recursive set in the introduction rules. There | |
| 769 |   \emph{must} be a theorem of the form @{text "A \<le> B \<Longrightarrow> M A \<le> M B"},
 | |
| 770 |   for each premise @{text "M R\<^sub>i t"} in an introduction rule!
 | |
| 771 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 772 |   \item @{command (HOL) "inductive_set"} and @{command (HOL)
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 773 | "coinductive_set"} are wrappers for to the previous commands, | 
| 26849 | 774 | allowing the definition of (co)inductive sets. | 
| 775 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 776 |   \item @{attribute (HOL) mono} declares monotonicity rules.  These
 | 
| 26849 | 777 |   rule are involved in the automated monotonicity proof of @{command
 | 
| 778 | (HOL) "inductive"}. | |
| 779 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 780 |   \end{description}
 | 
| 26849 | 781 | *} | 
| 782 | ||
| 783 | ||
| 784 | subsection {* Derived rules *}
 | |
| 785 | ||
| 786 | text {*
 | |
| 787 |   Each (co)inductive definition @{text R} adds definitions to the
 | |
| 788 | theory and also proves some theorems: | |
| 789 | ||
| 790 |   \begin{description}
 | |
| 791 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 792 |   \item @{text R.intros} is the list of introduction rules as proven
 | 
| 26849 | 793 | theorems, for the recursive predicates (or sets). The rules are | 
| 794 | also available individually, using the names given them in the | |
| 795 | theory file; | |
| 796 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 797 |   \item @{text R.cases} is the case analysis (or elimination) rule;
 | 
| 26849 | 798 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 799 |   \item @{text R.induct} or @{text R.coinduct} is the (co)induction
 | 
| 26849 | 800 | rule. | 
| 801 | ||
| 802 |   \end{description}
 | |
| 803 | ||
| 804 |   When several predicates @{text "R\<^sub>1, \<dots>, R\<^sub>n"} are
 | |
| 805 | defined simultaneously, the list of introduction rules is called | |
| 806 |   @{text "R\<^sub>1_\<dots>_R\<^sub>n.intros"}, the case analysis rules are
 | |
| 807 |   called @{text "R\<^sub>1.cases, \<dots>, R\<^sub>n.cases"}, and the list
 | |
| 808 |   of mutual induction rules is called @{text
 | |
| 809 | "R\<^sub>1_\<dots>_R\<^sub>n.inducts"}. | |
| 810 | *} | |
| 811 | ||
| 812 | ||
| 813 | subsection {* Monotonicity theorems *}
 | |
| 814 | ||
| 815 | text {*
 | |
| 816 | Each theory contains a default set of theorems that are used in | |
| 817 | monotonicity proofs. New rules can be added to this set via the | |
| 818 |   @{attribute (HOL) mono} attribute.  The HOL theory @{text Inductive}
 | |
| 819 | shows how this is done. In general, the following monotonicity | |
| 820 | theorems may be added: | |
| 821 | ||
| 822 |   \begin{itemize}
 | |
| 823 | ||
| 824 |   \item Theorems of the form @{text "A \<le> B \<Longrightarrow> M A \<le> M B"}, for proving
 | |
| 825 | monotonicity of inductive definitions whose introduction rules have | |
| 826 |   premises involving terms such as @{text "M R\<^sub>i t"}.
 | |
| 827 | ||
| 828 | \item Monotonicity theorems for logical operators, which are of the | |
| 829 |   general form @{text "(\<dots> \<longrightarrow> \<dots>) \<Longrightarrow> \<dots> (\<dots> \<longrightarrow> \<dots>) \<Longrightarrow> \<dots> \<longrightarrow> \<dots>"}.  For example, in
 | |
| 830 |   the case of the operator @{text "\<or>"}, the corresponding theorem is
 | |
| 831 | \[ | |
| 832 |   \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"}}
 | |
| 833 | \] | |
| 834 | ||
| 835 | \item De Morgan style equations for reasoning about the ``polarity'' | |
| 836 | of expressions, e.g. | |
| 837 | \[ | |
| 838 |   @{prop "\<not> \<not> P \<longleftrightarrow> P"} \qquad\qquad
 | |
| 839 |   @{prop "\<not> (P \<and> Q) \<longleftrightarrow> \<not> P \<or> \<not> Q"}
 | |
| 840 | \] | |
| 841 | ||
| 842 | \item Equations for reducing complex operators to more primitive | |
| 843 | ones whose monotonicity can easily be proved, e.g. | |
| 844 | \[ | |
| 845 |   @{prop "(P \<longrightarrow> Q) \<longleftrightarrow> \<not> P \<or> Q"} \qquad\qquad
 | |
| 846 |   @{prop "Ball A P \<equiv> \<forall>x. x \<in> A \<longrightarrow> P x"}
 | |
| 847 | \] | |
| 848 | ||
| 849 |   \end{itemize}
 | |
| 850 | ||
| 851 | %FIXME: Example of an inductive definition | |
| 852 | *} | |
| 853 | ||
| 854 | ||
| 855 | section {* Arithmetic proof support *}
 | |
| 856 | ||
| 857 | text {*
 | |
| 858 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 859 |     @{method_def (HOL) arith} & : & @{text method} \\
 | 
| 30863 | 860 |     @{attribute_def (HOL) arith} & : & @{text attribute} \\
 | 
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 861 |     @{attribute_def (HOL) arith_split} & : & @{text attribute} \\
 | 
| 26849 | 862 |   \end{matharray}
 | 
| 863 | ||
| 864 |   The @{method (HOL) arith} method decides linear arithmetic problems
 | |
| 865 |   (on types @{text nat}, @{text int}, @{text real}).  Any current
 | |
| 866 | facts are inserted into the goal before running the procedure. | |
| 867 | ||
| 30863 | 868 |   The @{attribute (HOL) arith} attribute declares facts that are
 | 
| 869 | always supplied to the arithmetic provers implicitly. | |
| 26849 | 870 | |
| 30863 | 871 |   The @{attribute (HOL) arith_split} attribute declares case split
 | 
| 30865 | 872 |   rules to be expanded before @{method (HOL) arith} is invoked.
 | 
| 30863 | 873 | |
| 874 | Note that a simpler (but faster) arithmetic prover is | |
| 875 | already invoked by the Simplifier. | |
| 26849 | 876 | *} | 
| 877 | ||
| 878 | ||
| 30169 | 879 | section {* Intuitionistic proof search *}
 | 
| 880 | ||
| 881 | text {*
 | |
| 882 |   \begin{matharray}{rcl}
 | |
| 30171 | 883 |     @{method_def (HOL) iprover} & : & @{text method} \\
 | 
| 30169 | 884 |   \end{matharray}
 | 
| 885 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 886 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 887 |     @@{method (HOL) iprover} ( @{syntax rulemod} * )
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 888 | "} | 
| 30169 | 889 | |
| 30171 | 890 |   The @{method (HOL) iprover} method performs intuitionistic proof
 | 
| 891 | search, depending on specifically declared rules from the context, | |
| 892 | or given as explicit arguments. Chained facts are inserted into the | |
| 35613 | 893 | goal before commencing proof search. | 
| 894 | ||
| 30169 | 895 |   Rules need to be classified as @{attribute (Pure) intro},
 | 
| 896 |   @{attribute (Pure) elim}, or @{attribute (Pure) dest}; here the
 | |
| 897 |   ``@{text "!"}'' indicator refers to ``safe'' rules, which may be
 | |
| 898 | applied aggressively (without considering back-tracking later). | |
| 899 |   Rules declared with ``@{text "?"}'' are ignored in proof search (the
 | |
| 42626 | 900 |   single-step @{method (Pure) rule} method still observes these).  An
 | 
| 30169 | 901 | explicit weight annotation may be given as well; otherwise the | 
| 902 | number of rule premises will be taken into account here. | |
| 903 | *} | |
| 904 | ||
| 905 | ||
| 30171 | 906 | section {* Coherent Logic *}
 | 
| 907 | ||
| 908 | text {*
 | |
| 909 |   \begin{matharray}{rcl}
 | |
| 910 |     @{method_def (HOL) "coherent"} & : & @{text method} \\
 | |
| 911 |   \end{matharray}
 | |
| 912 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 913 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 914 |     @@{method (HOL) coherent} @{syntax thmrefs}?
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 915 | "} | 
| 30171 | 916 | |
| 917 |   The @{method (HOL) coherent} method solves problems of
 | |
| 918 |   \emph{Coherent Logic} \cite{Bezem-Coquand:2005}, which covers
 | |
| 919 | applications in confluence theory, lattice theory and projective | |
| 40800 
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
 wenzelm parents: 
40711diff
changeset | 920 |   geometry.  See @{file "~~/src/HOL/ex/Coherent.thy"} for some
 | 
| 30171 | 921 | examples. | 
| 922 | *} | |
| 923 | ||
| 924 | ||
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 925 | section {* Proving propositions *}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 926 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 927 | text {*
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 928 | In addition to the standard proof methods, a number of diagnosis | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 929 | tools search for proofs and provide an Isar proof snippet on success. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 930 | These tools are available via the following commands. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 931 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 932 |   \begin{matharray}{rcl}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 933 |     @{command_def (HOL) "solve_direct"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 43040 | 934 |     @{command_def (HOL) "try"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 43016 | 935 |     @{command_def (HOL) "try_methods"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 936 |     @{command_def (HOL) "sledgehammer"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 937 |     @{command_def (HOL) "sledgehammer_params"} & : & @{text "theory \<rightarrow> theory"}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 938 |   \end{matharray}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 939 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 940 |   @{rail "
 | 
| 43040 | 941 |     @@{command (HOL) try}
 | 
| 942 | ; | |
| 943 | ||
| 43016 | 944 |     @@{command (HOL) try_methods} ( ( ( 'simp' | 'intro' | 'elim' | 'dest' ) ':' @{syntax thmrefs} ) + ) ?
 | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 945 |       @{syntax nat}?
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 946 | ; | 
| 43040 | 947 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 948 |     @@{command (HOL) sledgehammer} ( '[' args ']' )? facts? @{syntax nat}?
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 949 | ; | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 950 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 951 |     @@{command (HOL) sledgehammer_params} ( ( '[' args ']' ) ? )
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 952 | ; | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 953 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 954 |     args: ( @{syntax name} '=' value + ',' )
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 955 | ; | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 956 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 957 |     facts: '(' ( ( ( ( 'add' | 'del' ) ':' ) ? @{syntax thmrefs} ) + ) ? ')'
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 958 | ; | 
| 43019 
619f16bf2150
removed FIXME: "try_methods" doesn't take a clasimpmod, because it needs to generate Isar proof text in case of success and hence needs total control over its arguments
 blanchet parents: 
43016diff
changeset | 959 | "} % FIXME check args "value" | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 960 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 961 |   \begin{description}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 962 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 963 |   \item @{command (HOL) "solve_direct"} checks whether the current subgoals can
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 964 | be solved directly by an existing theorem. Duplicate lemmas can be detected | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 965 | in this way. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 966 | |
| 43016 | 967 |   \item @{command (HOL) "try_methods"} attempts to prove a subgoal using a combination
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 968 |     of standard proof methods (@{text auto}, @{text simp}, @{text blast}, etc.).
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 969 |     Additional facts supplied via @{text "simp:"}, @{text "intro:"},
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 970 |     @{text "elim:"}, and @{text "dest:"} are passed to the appropriate proof
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 971 | methods. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 972 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 973 |   \item @{command (HOL) "sledgehammer"} attempts to prove a subgoal using external
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 974 | automatic provers (resolution provers and SMT solvers). See the Sledgehammer | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 975 |     manual \cite{isabelle-sledgehammer} for details.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 976 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 977 |   \item @{command (HOL) "sledgehammer_params"} changes
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 978 |     @{command (HOL) "sledgehammer"} configuration options persistently.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 979 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 980 |   \end{description}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 981 | *} | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 982 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 983 | |
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 984 | section {* Checking and refuting propositions *}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 985 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 986 | text {*
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 987 | Identifying incorrect propositions usually involves evaluation of | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 988 | particular assignments and systematic counterexample search. This | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 989 | is supported by the following commands. | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 990 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 991 |   \begin{matharray}{rcl}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 992 |     @{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: 
31254diff
changeset | 993 |     @{command_def (HOL) "quickcheck"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 994 |     @{command_def (HOL) "refute"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 995 |     @{command_def (HOL) "nitpick"}@{text "\<^sup>*"} & : & @{text "proof \<rightarrow>"} \\
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 996 |     @{command_def (HOL) "quickcheck_params"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 997 |     @{command_def (HOL) "refute_params"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 998 |     @{command_def (HOL) "nitpick_params"} & : & @{text "theory \<rightarrow> theory"}
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 999 |   \end{matharray}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1000 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1001 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1002 |     @@{command (HOL) value} ( '[' name ']' )? modes? @{syntax term}
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1003 | ; | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1004 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1005 |     (@@{command (HOL) quickcheck} | @@{command (HOL) refute} | @@{command (HOL) nitpick})
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1006 |       ( '[' args ']' )? @{syntax nat}?
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1007 | ; | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1008 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1009 |     (@@{command (HOL) quickcheck_params} | @@{command (HOL) refute_params} |
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1010 |       @@{command (HOL) nitpick_params}) ( '[' args ']' )?
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1011 | ; | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1012 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1013 |     modes: '(' (@{syntax name} +) ')'
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1014 | ; | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1015 | |
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1016 |     args: ( @{syntax name} '=' value + ',' )
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1017 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1018 | "} % FIXME check "value" | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1019 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1020 |   \begin{description}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1021 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1022 |   \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: 
31254diff
changeset | 1023 |     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: 
31254diff
changeset | 1024 |     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: 
31254diff
changeset | 1025 | 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: 
31254diff
changeset | 1026 | 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: 
31254diff
changeset | 1027 | Alternatively a specific evaluator can be selected using square | 
| 37444 | 1028 | brackets; typical evaluators use the current set of code equations | 
| 1029 |     to normalize and include @{text simp} for fully symbolic evaluation
 | |
| 1030 |     using the simplifier, @{text nbe} for \emph{normalization by evaluation}
 | |
| 1031 |     and \emph{code} for code generation in SML.
 | |
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1032 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1033 |   \item @{command (HOL) "quickcheck"} tests the current goal for
 | 
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1034 | counterexamples using a series of assignments for its | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1035 | 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: 
31254diff
changeset | 1036 | can be selected explicitly using an optional goal index. | 
| 40918 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1037 | Assignments can be chosen exhausting the search space upto a given | 
| 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1038 | size or using a fixed number of random assignments in the search space. | 
| 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1039 | By default, quickcheck uses exhaustive testing. | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1040 | 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: 
31254diff
changeset | 1041 |     @{command (HOL) "quickcheck"}, notably:
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1042 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1043 |     \begin{description}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1044 | |
| 40918 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1045 |     \item[@{text tester}] specifies how to explore the search space
 | 
| 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1046 | (e.g. exhaustive or random). | 
| 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1047 | An unknown configuration option is treated as an argument to tester, | 
| 
7351c6afb348
explaining quickcheck testers in the documentation
 bulwahn parents: 
40800diff
changeset | 1048 |       making @{text "tester ="} optional.
 | 
| 40254 | 1049 |     \item[@{text size}] specifies the maximum size of the search space
 | 
| 1050 | for assignment values. | |
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1051 | |
| 42092 
f07b373f25d3
adding documentation about the eval option in quickcheck
 bulwahn parents: 
41846diff
changeset | 1052 |     \item[@{text eval}] takes a term or a list of terms and evaluates
 | 
| 
f07b373f25d3
adding documentation about the eval option in quickcheck
 bulwahn parents: 
41846diff
changeset | 1053 | these terms under the variable assignment found by quickcheck. | 
| 42123 | 1054 | |
| 40254 | 1055 |     \item[@{text iterations}] sets how many sets of assignments are
 | 
| 1056 | generated for each particular size. | |
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1057 | |
| 40254 | 1058 |     \item[@{text no_assms}] specifies whether assumptions in
 | 
| 1059 | structured proofs should be ignored. | |
| 35331 | 1060 | |
| 40254 | 1061 |     \item[@{text timeout}] sets the time limit in seconds.
 | 
| 40245 
59f011c1877a
updating documentation on quickcheck in the Isar reference
 bulwahn parents: 
40171diff
changeset | 1062 | |
| 40254 | 1063 |     \item[@{text default_type}] sets the type(s) generally used to
 | 
| 1064 | instantiate type variables. | |
| 40245 
59f011c1877a
updating documentation on quickcheck in the Isar reference
 bulwahn parents: 
40171diff
changeset | 1065 | |
| 40254 | 1066 |     \item[@{text report}] if set quickcheck reports how many tests
 | 
| 1067 | fulfilled the preconditions. | |
| 40245 
59f011c1877a
updating documentation on quickcheck in the Isar reference
 bulwahn parents: 
40171diff
changeset | 1068 | |
| 40254 | 1069 |     \item[@{text quiet}] if not set quickcheck informs about the
 | 
| 1070 | current size for assignment values. | |
| 40245 
59f011c1877a
updating documentation on quickcheck in the Isar reference
 bulwahn parents: 
40171diff
changeset | 1071 | |
| 40254 | 1072 |     \item[@{text expect}] can be used to check if the user's
 | 
| 1073 |     expectation was met (@{text no_expectation}, @{text
 | |
| 1074 |     no_counterexample}, or @{text counterexample}).
 | |
| 40245 
59f011c1877a
updating documentation on quickcheck in the Isar reference
 bulwahn parents: 
40171diff
changeset | 1075 | |
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1076 |     \end{description}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1077 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1078 | 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: 
31254diff
changeset | 1079 | |
| 42215 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1080 |   \item @{command (HOL) "quickcheck_params"} changes
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1081 |     @{command (HOL) "quickcheck"} configuration options persistently.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1082 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1083 |   \item @{command (HOL) "refute"} tests the current goal for
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1084 | counterexamples using a reduction to SAT. The following configuration | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1085 | options are supported: | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1086 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1087 |     \begin{description}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1088 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1089 |     \item[@{text minsize}] specifies the minimum size (cardinality) of the
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1090 | models to search for. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1091 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1092 |     \item[@{text maxsize}] specifies the maximum size (cardinality) of the
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1093 | models to search for. Nonpositive values mean $\infty$. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1094 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1095 |     \item[@{text maxvars}] specifies the maximum number of Boolean variables
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1096 | to use when transforming the term into a propositional formula. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1097 | Nonpositive values mean $\infty$. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1098 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1099 |     \item[@{text satsolver}] specifies the SAT solver to use.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1100 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1101 |     \item[@{text no_assms}] specifies whether assumptions in
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1102 | structured proofs should be ignored. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1103 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1104 |     \item[@{text maxtime}] sets the time limit in seconds.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1105 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1106 |     \item[@{text expect}] can be used to check if the user's
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1107 |     expectation was met (@{text genuine}, @{text potential},
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1108 |     @{text none}, or @{text unknown}).
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1109 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1110 |     \end{description}
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1111 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1112 | These option can be given within square brackets. | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1113 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1114 |   \item @{command (HOL) "refute_params"} changes
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1115 |     @{command (HOL) "refute"} configuration options persistently.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1116 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1117 |   \item @{command (HOL) "nitpick"} tests the current goal for counterexamples
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1118 | using a reduction to first-order relational logic. See the Nitpick manual | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1119 |     \cite{isabelle-nitpick} for details.
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1120 | |
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1121 |   \item @{command (HOL) "nitpick_params"} changes
 | 
| 
de9d43c427ae
document "nitpick(_params)", "refute(_params)", "try", "sledgehammer(_params)", and "solve_direct"
 blanchet parents: 
42123diff
changeset | 1122 |     @{command (HOL) "nitpick"} configuration options persistently.
 | 
| 31912 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1123 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1124 |   \end{description}
 | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1125 | *} | 
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1126 | |
| 
f5bd306f5e9d
more friendly wrt. PGs interpretation of compound *); added dedicated section on value and quickcheck
 haftmann parents: 
31254diff
changeset | 1127 | |
| 28752 | 1128 | section {* Unstructured case analysis and induction \label{sec:hol-induct-tac} *}
 | 
| 26849 | 1129 | |
| 1130 | text {*
 | |
| 27123 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1131 | The following tools of Isabelle/HOL support cases analysis and | 
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1132 | induction in unstructured tactic scripts; see also | 
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1133 |   \secref{sec:cases-induct} for proper Isar versions of similar ideas.
 | 
| 26849 | 1134 | |
| 1135 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1136 |     @{method_def (HOL) case_tac}@{text "\<^sup>*"} & : & @{text method} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1137 |     @{method_def (HOL) induct_tac}@{text "\<^sup>*"} & : & @{text method} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1138 |     @{method_def (HOL) ind_cases}@{text "\<^sup>*"} & : & @{text method} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1139 |     @{command_def (HOL) "inductive_cases"}@{text "\<^sup>*"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
 | 
| 26849 | 1140 |   \end{matharray}
 | 
| 1141 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1142 |   @{rail "
 | 
| 42705 | 1143 |     @@{method (HOL) case_tac} @{syntax goal_spec}? @{syntax term} rule?
 | 
| 26849 | 1144 | ; | 
| 42705 | 1145 |     @@{method (HOL) induct_tac} @{syntax goal_spec}? (@{syntax insts} * @'and') rule?
 | 
| 26849 | 1146 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1147 |     @@{method (HOL) ind_cases} (@{syntax prop}+) (@'for' (@{syntax name}+))?
 | 
| 26849 | 1148 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1149 |     @@{command (HOL) inductive_cases} (@{syntax thmdecl}? (@{syntax prop}+) + @'and')
 | 
| 26849 | 1150 | ; | 
| 1151 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1152 |     rule: 'rule' ':' @{syntax thmref}
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1153 | "} | 
| 26849 | 1154 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1155 |   \begin{description}
 | 
| 26849 | 1156 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1157 |   \item @{method (HOL) case_tac} and @{method (HOL) induct_tac} admit
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1158 | to reason about inductive types. Rules are selected according to | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1159 |   the declarations by the @{attribute cases} and @{attribute induct}
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1160 |   attributes, cf.\ \secref{sec:cases-induct}.  The @{command (HOL)
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1161 | datatype} package already takes care of this. | 
| 27123 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1162 | |
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1163 | These unstructured tactics feature both goal addressing and dynamic | 
| 26849 | 1164 |   instantiation.  Note that named rule cases are \emph{not} provided
 | 
| 27123 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1165 |   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: 
27103diff
changeset | 1166 |   methods (see \secref{sec:cases-induct}).  Unlike the @{method
 | 
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1167 |   induct} method, @{method induct_tac} does not handle structured rule
 | 
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1168 | statements, only the compact object-logic conclusion of the subgoal | 
| 
11fcdd5897dd
case_tac/induct_tac: use same declarations as cases/induct;
 wenzelm parents: 
27103diff
changeset | 1169 | being addressed. | 
| 42123 | 1170 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1171 |   \item @{method (HOL) ind_cases} and @{command (HOL)
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1172 |   "inductive_cases"} provide an interface to the internal @{ML_text
 | 
| 26860 | 1173 | mk_cases} operation. Rules are simplified in an unrestricted | 
| 1174 | forward manner. | |
| 26849 | 1175 | |
| 1176 |   While @{method (HOL) ind_cases} is a proof method to apply the
 | |
| 1177 |   result immediately as elimination rules, @{command (HOL)
 | |
| 1178 | "inductive_cases"} provides case split theorems at the theory level | |
| 1179 |   for later use.  The @{keyword "for"} argument of the @{method (HOL)
 | |
| 1180 | ind_cases} method allows to specify a list of variables that should | |
| 1181 | be generalized before applying the resulting rule. | |
| 1182 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1183 |   \end{description}
 | 
| 26849 | 1184 | *} | 
| 1185 | ||
| 1186 | ||
| 1187 | section {* Executable code *}
 | |
| 1188 | ||
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1189 | text {* For validation purposes, it is often useful to \emph{execute}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1190 | specifications. In principle, execution could be simulated by | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1191 | Isabelle's inference kernel, i.e. by a combination of resolution and | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1192 | simplification. Unfortunately, this approach is rather inefficient. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1193 | A more efficient way of executing specifications is to translate | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1194 | them into a functional programming language such as ML. | 
| 26849 | 1195 | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1196 | Isabelle provides two generic frameworks to support code generation | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1197 | from executable specifications. Isabelle/HOL instantiates these | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1198 | mechanisms in a way that is amenable to end-user applications. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1199 | *} | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1200 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1201 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1202 | subsection {* The new code generator (F. Haftmann) *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1203 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1204 | text {* This framework generates code from functional programs
 | 
| 37422 | 1205 |   (including overloading using type classes) to SML \cite{SML}, OCaml
 | 
| 38814 | 1206 |   \cite{OCaml}, Haskell \cite{haskell-revised-report} and Scala
 | 
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1207 |   \cite{scala-overview-tech-report}.  Conceptually, code generation is
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1208 |   split up in three steps: \emph{selection} of code theorems,
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1209 |   \emph{translation} into an abstract executable view and
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1210 |   \emph{serialization} to a specific \emph{target language}.
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1211 | Inductive specifications can be executed using the predicate | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1212 |   compiler which operates within HOL.  See \cite{isabelle-codegen} for
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1213 | an introduction. | 
| 37422 | 1214 | |
| 1215 |   \begin{matharray}{rcl}
 | |
| 1216 |     @{command_def (HOL) "export_code"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
 | |
| 1217 |     @{attribute_def (HOL) code} & : & @{text attribute} \\
 | |
| 1218 |     @{command_def (HOL) "code_abort"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1219 |     @{command_def (HOL) "code_datatype"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1220 |     @{command_def (HOL) "print_codesetup"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
 | |
| 1221 |     @{attribute_def (HOL) code_inline} & : & @{text attribute} \\
 | |
| 1222 |     @{attribute_def (HOL) code_post} & : & @{text attribute} \\
 | |
| 1223 |     @{command_def (HOL) "print_codeproc"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
 | |
| 1224 |     @{command_def (HOL) "code_thms"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
 | |
| 1225 |     @{command_def (HOL) "code_deps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
 | |
| 1226 |     @{command_def (HOL) "code_const"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1227 |     @{command_def (HOL) "code_type"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1228 |     @{command_def (HOL) "code_class"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1229 |     @{command_def (HOL) "code_instance"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1230 |     @{command_def (HOL) "code_reserved"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1231 |     @{command_def (HOL) "code_monad"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1232 |     @{command_def (HOL) "code_include"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 1233 |     @{command_def (HOL) "code_modulename"} & : & @{text "theory \<rightarrow> theory"} \\
 | |
| 39608 | 1234 |     @{command_def (HOL) "code_reflect"} & : & @{text "theory \<rightarrow> theory"}
 | 
| 37422 | 1235 |   \end{matharray}
 | 
| 1236 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1237 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1238 |     @@{command (HOL) export_code} ( constexpr + ) \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1239 |        ( ( @'in' target ( @'module_name' @{syntax string} ) ? \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1240 |         ( @'file' ( @{syntax string} | '-' ) ) ? ( '(' args ')' ) ?) + ) ?
 | 
| 37422 | 1241 | ; | 
| 1242 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1243 |     const: @{syntax term}
 | 
| 37422 | 1244 | ; | 
| 1245 | ||
| 40711 
81bc73585eec
globbing constant expressions use more idiomatic underscore rather than star
 haftmann parents: 
40709diff
changeset | 1246 | constexpr: ( const | 'name._' | '_' ) | 
| 37422 | 1247 | ; | 
| 1248 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1249 |     typeconstructor: @{syntax nameref}
 | 
| 37422 | 1250 | ; | 
| 1251 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1252 |     class: @{syntax nameref}
 | 
| 37422 | 1253 | ; | 
| 1254 | ||
| 38814 | 1255 | target: 'SML' | 'OCaml' | 'Haskell' | 'Scala' | 
| 37422 | 1256 | ; | 
| 1257 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1258 |     @@{attribute (HOL) code} ( 'del' | 'abstype' | 'abstract' )?
 | 
| 37422 | 1259 | ; | 
| 1260 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1261 |     @@{command (HOL) code_abort} ( const + )
 | 
| 37422 | 1262 | ; | 
| 1263 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1264 |     @@{command (HOL) code_datatype} ( const + )
 | 
| 37422 | 1265 | ; | 
| 1266 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1267 |     @@{attribute (HOL) code_inline} ( 'del' ) ?
 | 
| 37422 | 1268 | ; | 
| 1269 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1270 |     @@{attribute (HOL) code_post} ( 'del' ) ?
 | 
| 37422 | 1271 | ; | 
| 1272 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1273 |     @@{command (HOL) code_thms} ( constexpr + ) ?
 | 
| 37422 | 1274 | ; | 
| 1275 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1276 |     @@{command (HOL) code_deps} ( constexpr + ) ?
 | 
| 37422 | 1277 | ; | 
| 1278 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1279 |     @@{command (HOL) code_const} (const + @'and') \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1280 |       ( ( '(' target ( syntax ? + @'and' ) ')' ) + )
 | 
| 37422 | 1281 | ; | 
| 1282 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1283 |     @@{command (HOL) code_type} (typeconstructor + @'and') \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1284 |       ( ( '(' target ( syntax ? + @'and' ) ')' ) + )
 | 
| 37422 | 1285 | ; | 
| 1286 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1287 |     @@{command (HOL) code_class} (class + @'and') \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1288 |       ( ( '(' target \\ ( @{syntax string} ? + @'and' ) ')' ) + )
 | 
| 37422 | 1289 | ; | 
| 1290 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1291 |     @@{command (HOL) code_instance} (( typeconstructor '::' class ) + @'and') \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1292 |       ( ( '(' target ( '-' ? + @'and' ) ')' ) + )
 | 
| 37422 | 1293 | ; | 
| 1294 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1295 |     @@{command (HOL) code_reserved} target ( @{syntax string} + )
 | 
| 37422 | 1296 | ; | 
| 1297 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1298 |     @@{command (HOL) code_monad} const const target
 | 
| 37422 | 1299 | ; | 
| 1300 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1301 |     @@{command (HOL) code_include} target ( @{syntax string} ( @{syntax string} | '-') )
 | 
| 37422 | 1302 | ; | 
| 1303 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1304 |     @@{command (HOL) code_modulename} target ( ( @{syntax string} @{syntax string} ) + )
 | 
| 39608 | 1305 | ; | 
| 1306 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1307 |     @@{command (HOL) code_reflect} @{syntax string} \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1308 |       ( @'datatypes' ( @{syntax string} '=' ( '_' | ( @{syntax string} + '|' ) + @'and' ) ) ) ? \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1309 |       ( @'functions' ( @{syntax string} + ) ) ? ( @'file' @{syntax string} ) ?
 | 
| 37422 | 1310 | ; | 
| 1311 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1312 |     syntax: @{syntax string} | ( @'infix' | @'infixl' | @'infixr' ) @{syntax nat} @{syntax string}
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1313 | "} | 
| 37422 | 1314 | |
| 1315 |   \begin{description}
 | |
| 1316 | ||
| 1317 |   \item @{command (HOL) "export_code"} generates code for a given list
 | |
| 39608 | 1318 | of constants in the specified target language(s). If no | 
| 1319 | serialization instruction is given, only abstract code is generated | |
| 1320 | internally. | |
| 37422 | 1321 | |
| 1322 | Constants may be specified by giving them literally, referring to | |
| 1323 |   all executable contants within a certain theory by giving @{text
 | |
| 1324 |   "name.*"}, or referring to \emph{all} executable constants currently
 | |
| 1325 |   available by giving @{text "*"}.
 | |
| 1326 | ||
| 1327 | By default, for each involved theory one corresponding name space | |
| 1328 | module is generated. Alternativly, a module name may be specified | |
| 1329 |   after the @{keyword "module_name"} keyword; then \emph{all} code is
 | |
| 1330 | placed in this module. | |
| 1331 | ||
| 39608 | 1332 |   For \emph{SML}, \emph{OCaml} and \emph{Scala} the file specification
 | 
| 1333 |   refers to a single file; for \emph{Haskell}, it refers to a whole
 | |
| 1334 | directory, where code is generated in multiple files reflecting the | |
| 1335 | module hierarchy. Omitting the file specification denotes standard | |
| 37749 | 1336 | output. | 
| 37422 | 1337 | |
| 1338 | Serializers take an optional list of arguments in parentheses. For | |
| 1339 |   \emph{SML} and \emph{OCaml}, ``@{text no_signatures}`` omits
 | |
| 1340 | explicit module signatures. | |
| 42123 | 1341 | |
| 39608 | 1342 |   For \emph{Haskell} a module name prefix may be given using the
 | 
| 1343 |   ``@{text "root:"}'' argument; ``@{text string_classes}'' adds a
 | |
| 1344 |   ``@{verbatim "deriving (Read, Show)"}'' clause to each appropriate
 | |
| 1345 | datatype declaration. | |
| 37422 | 1346 | |
| 1347 |   \item @{attribute (HOL) code} explicitly selects (or with option
 | |
| 38462 
34d3de1254cd
formally document `code abstype` and `code abstract` attributes
 haftmann parents: 
37820diff
changeset | 1348 |   ``@{text "del"}'' deselects) a code equation for code generation.
 | 
| 
34d3de1254cd
formally document `code abstype` and `code abstract` attributes
 haftmann parents: 
37820diff
changeset | 1349 | Usually packages introducing code equations provide a reasonable | 
| 
34d3de1254cd
formally document `code abstype` and `code abstract` attributes
 haftmann parents: 
37820diff
changeset | 1350 |   default setup for selection.  Variants @{text "code abstype"} and
 | 
| 
34d3de1254cd
formally document `code abstype` and `code abstract` attributes
 haftmann parents: 
37820diff
changeset | 1351 |   @{text "code abstract"} declare abstract datatype certificates or
 | 
| 
34d3de1254cd
formally document `code abstype` and `code abstract` attributes
 haftmann parents: 
37820diff
changeset | 1352 | code equations on abstract datatype representations respectively. | 
| 37422 | 1353 | |
| 1354 |   \item @{command (HOL) "code_abort"} declares constants which are not
 | |
| 39608 | 1355 | required to have a definition by means of code equations; if needed | 
| 1356 | these are implemented by program abort instead. | |
| 37422 | 1357 | |
| 1358 |   \item @{command (HOL) "code_datatype"} specifies a constructor set
 | |
| 1359 | for a logical type. | |
| 1360 | ||
| 1361 |   \item @{command (HOL) "print_codesetup"} gives an overview on
 | |
| 1362 | selected code equations and code generator datatypes. | |
| 1363 | ||
| 39608 | 1364 |   \item @{attribute (HOL) code_inline} declares (or with option
 | 
| 1365 |   ``@{text "del"}'' removes) inlining theorems which are applied as
 | |
| 1366 | rewrite rules to any code equation during preprocessing. | |
| 37422 | 1367 | |
| 39608 | 1368 |   \item @{attribute (HOL) code_post} declares (or with option ``@{text
 | 
| 1369 | "del"}'' removes) theorems which are applied as rewrite rules to any | |
| 1370 | result of an evaluation. | |
| 37422 | 1371 | |
| 39608 | 1372 |   \item @{command (HOL) "print_codeproc"} prints the setup of the code
 | 
| 1373 | generator preprocessor. | |
| 37422 | 1374 | |
| 1375 |   \item @{command (HOL) "code_thms"} prints a list of theorems
 | |
| 1376 | representing the corresponding program containing all given | |
| 1377 | constants after preprocessing. | |
| 1378 | ||
| 1379 |   \item @{command (HOL) "code_deps"} visualizes dependencies of
 | |
| 1380 | theorems representing the corresponding program containing all given | |
| 1381 | constants after preprocessing. | |
| 1382 | ||
| 1383 |   \item @{command (HOL) "code_const"} associates a list of constants
 | |
| 1384 | with target-specific serializations; omitting a serialization | |
| 1385 | deletes an existing serialization. | |
| 1386 | ||
| 1387 |   \item @{command (HOL) "code_type"} associates a list of type
 | |
| 1388 | constructors with target-specific serializations; omitting a | |
| 1389 | serialization deletes an existing serialization. | |
| 1390 | ||
| 1391 |   \item @{command (HOL) "code_class"} associates a list of classes
 | |
| 1392 | with target-specific class names; omitting a serialization deletes | |
| 1393 |   an existing serialization.  This applies only to \emph{Haskell}.
 | |
| 1394 | ||
| 1395 |   \item @{command (HOL) "code_instance"} declares a list of type
 | |
| 1396 | constructor / class instance relations as ``already present'' for a | |
| 1397 |   given target.  Omitting a ``@{text "-"}'' deletes an existing
 | |
| 1398 | ``already present'' declaration. This applies only to | |
| 1399 |   \emph{Haskell}.
 | |
| 1400 | ||
| 1401 |   \item @{command (HOL) "code_reserved"} declares a list of names as
 | |
| 1402 | reserved for a given target, preventing it to be shadowed by any | |
| 1403 | generated code. | |
| 1404 | ||
| 1405 |   \item @{command (HOL) "code_monad"} provides an auxiliary mechanism
 | |
| 1406 | to generate monadic code for Haskell. | |
| 1407 | ||
| 1408 |   \item @{command (HOL) "code_include"} adds arbitrary named content
 | |
| 1409 |   (``include'') to generated code.  A ``@{text "-"}'' as last argument
 | |
| 1410 | will remove an already added ``include''. | |
| 1411 | ||
| 1412 |   \item @{command (HOL) "code_modulename"} declares aliasings from one
 | |
| 1413 | module name onto another. | |
| 1414 | ||
| 39608 | 1415 |   \item @{command (HOL) "code_reflect"} without a ``@{text "file"}''
 | 
| 1416 | argument compiles code into the system runtime environment and | |
| 1417 | modifies the code generator setup that future invocations of system | |
| 1418 |   runtime code generation referring to one of the ``@{text
 | |
| 1419 |   "datatypes"}'' or ``@{text "functions"}'' entities use these precompiled
 | |
| 1420 |   entities.  With a ``@{text "file"}'' argument, the corresponding code
 | |
| 1421 | is generated into that specified file without modifying the code | |
| 1422 | generator setup. | |
| 1423 | ||
| 37422 | 1424 |   \end{description}
 | 
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1425 | *} | 
| 37422 | 1426 | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1427 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1428 | subsection {* The old code generator (S. Berghofer) *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1429 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1430 | text {* This framework generates code from both functional and
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1431 | relational programs to SML, as explained below. | 
| 26849 | 1432 | |
| 1433 |   \begin{matharray}{rcl}
 | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1434 |     @{command_def "code_module"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1435 |     @{command_def "code_library"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1436 |     @{command_def "consts_code"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1437 |     @{command_def "types_code"} & : & @{text "theory \<rightarrow> theory"} \\
 | 
| 42626 | 1438 |     @{attribute_def code} & : & @{text attribute} \\
 | 
| 26849 | 1439 |   \end{matharray}
 | 
| 1440 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1441 |   @{rail "
 | 
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1442 |   ( @@{command code_module} | @@{command code_library} ) modespec? @{syntax name}? \\
 | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1443 |     ( @'file' name ) ? ( @'imports' ( @{syntax name} + ) ) ? \\
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1444 |     @'contains' ( ( @{syntax name} '=' @{syntax term} ) + | @{syntax term} + )
 | 
| 26849 | 1445 | ; | 
| 1446 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1447 |   modespec: '(' ( @{syntax name} * ) ')'
 | 
| 26849 | 1448 | ; | 
| 1449 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1450 |   @@{command (HOL) consts_code} (codespec +)
 | 
| 26849 | 1451 | ; | 
| 1452 | ||
| 1453 | codespec: const template attachment ? | |
| 1454 | ; | |
| 1455 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1456 |   @@{command (HOL) types_code} (tycodespec +)
 | 
| 26849 | 1457 | ; | 
| 1458 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1459 |   tycodespec: @{syntax name} template attachment ?
 | 
| 26849 | 1460 | ; | 
| 1461 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1462 |   const: @{syntax term}
 | 
| 26849 | 1463 | ; | 
| 1464 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1465 |   template: '(' @{syntax string} ')'
 | 
| 26849 | 1466 | ; | 
| 1467 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1468 |   attachment: 'attach' modespec? '{' @{syntax text} '}'
 | 
| 26849 | 1469 | ; | 
| 1470 | ||
| 42626 | 1471 |   @@{attribute code} name?
 | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1472 | "} | 
| 26849 | 1473 | *} | 
| 1474 | ||
| 27045 | 1475 | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1476 | subsubsection {* Invoking the code generator *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1477 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1478 | text {* The code generator is invoked via the @{command code_module}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1479 |   and @{command code_library} commands, which correspond to
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1480 |   \emph{incremental} and \emph{modular} code generation, respectively.
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1481 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1482 |   \begin{description}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1483 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1484 | \item [Modular] For each theory, an ML structure is generated, | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1485 | containing the code generated from the constants defined in this | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1486 | theory. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1487 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1488 | \item [Incremental] All the generated code is emitted into the same | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1489 | structure. This structure may import code from previously generated | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1490 |   structures, which can be specified via @{keyword "imports"}.
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1491 | Moreover, the generated structure may also be referred to in later | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1492 | invocations of the code generator. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1493 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1494 |   \end{description}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1495 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1496 |   After the @{command code_module} and @{command code_library}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1497 | keywords, the user may specify an optional list of ``modes'' in | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1498 | parentheses. These can be used to instruct the code generator to | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1499 | emit additional code for special purposes, e.g.\ functions for | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1500 | converting elements of generated datatypes to Isabelle terms, or | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1501 | test data generators. The list of modes is followed by a module | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1502 | name. The module name is optional for modular code generation, but | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1503 | must be specified for incremental code generation. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1504 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1505 | The code can either be written to a file, in which case a file name | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1506 |   has to be specified after the @{keyword "file"} keyword, or be loaded
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1507 | directly into Isabelle's ML environment. In the latter case, the | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1508 |   @{command ML} theory command can be used to inspect the results
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1509 | interactively, for example. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1510 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1511 | The terms from which to generate code can be specified after the | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1512 |   @{keyword "contains"} keyword, either as a list of bindings, or just
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1513 | as a list of terms. In the latter case, the code generator just | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1514 | produces code for all constants and types occuring in the term, but | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1515 | does not bind the compiled terms to ML identifiers. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1516 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1517 | Here is an example: | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1518 | *} | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1519 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1520 | code_module Test | 
| 42652 | 1521 | contains test = "foldl op + (0 :: int) [1, 2, 3, 4, 5]" | 
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1522 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1523 | text {* \noindent This binds the result of compiling the given term to
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1524 |   the ML identifier @{ML Test.test}.  *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1525 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1526 | ML {* @{assert} (Test.test = 15) *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1527 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1528 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1529 | subsubsection {* Configuring the code generator *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1530 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1531 | text {* When generating code for a complex term, the code generator
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1532 | recursively calls itself for all subterms. When it arrives at a | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1533 | constant, the default strategy of the code generator is to look up | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1534 | its definition and try to generate code for it. Constants which | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1535 | have no definitions that are immediately executable, may be | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1536 |   associated with a piece of ML code manually using the @{command_ref
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1537 | consts_code} command. It takes a list whose elements consist of a | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1538 | constant (given in usual term syntax -- an explicit type constraint | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1539 | accounts for overloading), and a mixfix template describing the ML | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1540 | code. The latter is very much the same as the mixfix templates used | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1541 | when declaring new constants. The most notable difference is that | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1542 | terms may be included in the ML template using antiquotation | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1543 |   brackets @{verbatim "{"}@{verbatim "*"}~@{text "..."}~@{verbatim
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1544 |   "*"}@{verbatim "}"}.
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1545 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1546 |   A similar mechanism is available for types: @{command_ref
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1547 | types_code} associates type constructors with specific ML code. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1548 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1549 |   For example, the following declarations copied from @{file
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1550 | "~~/src/HOL/Product_Type.thy"} describe how the product type of | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1551 | Isabelle/HOL should be compiled to ML. *} | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1552 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1553 | typedecl ('a, 'b) prod
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1554 | consts Pair :: "'a \<Rightarrow> 'b \<Rightarrow> ('a, 'b) prod"
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1555 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1556 | types_code prod  ("(_ */ _)")
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1557 | consts_code Pair  ("(_,/ _)")
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1558 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1559 | text {* Sometimes, the code associated with a constant or type may
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1560 | need to refer to auxiliary functions, which have to be emitted when | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1561 | the constant is used. Code for such auxiliary functions can be | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1562 |   declared using @{keyword "attach"}. For example, the @{const wfrec}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1563 | function can be implemented as follows: | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1564 | *} | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1565 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1566 | consts_code wfrec  ("\<module>wfrec?")  (* FIXME !? *)
 | 
| 42652 | 1567 | attach {* fun wfrec f x = f (wfrec f) x *}
 | 
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1568 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1569 | text {* If the code containing a call to @{const wfrec} resides in an
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1570 | ML structure different from the one containing the function | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1571 |   definition attached to @{const wfrec}, the name of the ML structure
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1572 |   (followed by a ``@{text "."}'')  is inserted in place of ``@{text
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1573 |   "\<module>"}'' in the above template.  The ``@{text "?"}''  means that
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1574 |   the code generator should ignore the first argument of @{const
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1575 | wfrec}, i.e.\ the termination relation, which is usually not | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1576 | executable. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1577 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1578 | \medskip Another possibility of configuring the code generator is to | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1579 | register theorems to be used for code generation. Theorems can be | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1580 |   registered via the @{attribute code} attribute. It takes an optional
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1581 | name as an argument, which indicates the format of the | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1582 | theorem. Currently supported formats are equations (this is the | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1583 | default when no name is specified) and horn clauses (this is | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1584 |   indicated by the name \texttt{ind}). The left-hand sides of
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1585 | equations may only contain constructors and distinct variables, | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1586 | whereas horn clauses must have the same format as introduction rules | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1587 | of inductive definitions. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1588 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1589 | The following example specifies three equations from which to | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1590 |   generate code for @{term "op <"} on natural numbers (see also
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1591 |   @{"file" "~~/src/HOL/Nat.thy"}).  *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1592 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1593 | lemma [code]: "(Suc m < Suc n) = (m < n)" | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1594 | and [code]: "((n::nat) < 0) = False" | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1595 | and [code]: "(0 < Suc n) = True" by simp_all | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1596 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1597 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1598 | subsubsection {* Specific HOL code generators *}
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1599 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1600 | text {* The basic code generator framework offered by Isabelle/Pure
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1601 | has already been extended with additional code generators for | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1602 | specific HOL constructs. These include datatypes, recursive | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1603 | functions and inductive relations. The code generator for inductive | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1604 |   relations can handle expressions of the form @{text "(t\<^sub>1, \<dots>, t\<^sub>n) \<in>
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1605 |   r"}, where @{text "r"} is an inductively defined relation. If at
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1606 |   least one of the @{text "t\<^sub>i"} is a dummy pattern ``@{text "_"}'',
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1607 | the above expression evaluates to a sequence of possible answers. If | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1608 |   all of the @{text "t\<^sub>i"} are proper terms, the expression evaluates
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1609 | to a boolean value. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1610 | |
| 42652 | 1611 | The following example demonstrates this for beta-reduction on lambda | 
| 1612 |   terms (see also @{"file" "~~/src/HOL/Proofs/Lambda/Lambda.thy"}).
 | |
| 1613 | *} | |
| 1614 | ||
| 1615 | datatype dB = | |
| 1616 | Var nat | |
| 1617 | | App dB dB (infixl "\<degree>" 200) | |
| 1618 | | Abs dB | |
| 1619 | ||
| 1620 | primrec lift :: "dB \<Rightarrow> nat \<Rightarrow> dB" | |
| 1621 | where | |
| 1622 | "lift (Var i) k = (if i < k then Var i else Var (i + 1))" | |
| 1623 | | "lift (s \<degree> t) k = lift s k \<degree> lift t k" | |
| 1624 | | "lift (Abs s) k = Abs (lift s (k + 1))" | |
| 1625 | ||
| 1626 | primrec subst :: "dB \<Rightarrow> dB \<Rightarrow> nat \<Rightarrow> dB"  ("_[_'/_]" [300, 0, 0] 300)
 | |
| 1627 | where | |
| 1628 | "(Var i)[s/k] = | |
| 1629 | (if k < i then Var (i - 1) else if i = k then s else Var i)" | |
| 1630 | | "(t \<degree> u)[s/k] = t[s/k] \<degree> u[s/k]" | |
| 1631 | | "(Abs t)[s/k] = Abs (t[lift s 0 / k+1])" | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1632 | |
| 42652 | 1633 | inductive beta :: "dB \<Rightarrow> dB \<Rightarrow> bool" (infixl "\<rightarrow>\<^sub>\<beta>" 50) | 
| 1634 | where | |
| 1635 | beta: "Abs s \<degree> t \<rightarrow>\<^sub>\<beta> s[t/0]" | |
| 1636 | | appL: "s \<rightarrow>\<^sub>\<beta> t \<Longrightarrow> s \<degree> u \<rightarrow>\<^sub>\<beta> t \<degree> u" | |
| 1637 | | appR: "s \<rightarrow>\<^sub>\<beta> t \<Longrightarrow> u \<degree> s \<rightarrow>\<^sub>\<beta> u \<degree> t" | |
| 1638 | | abs: "s \<rightarrow>\<^sub>\<beta> t \<Longrightarrow> Abs s \<rightarrow>\<^sub>\<beta> Abs t" | |
| 1639 | ||
| 1640 | code_module Test | |
| 1641 | contains | |
| 1642 | test1 = "Abs (Var 0) \<degree> Var 0 \<rightarrow>\<^sub>\<beta> Var 0" | |
| 1643 | test2 = "Abs (Abs (Var 0 \<degree> Var 0) \<degree> (Abs (Var 0) \<degree> Var 0)) \<rightarrow>\<^sub>\<beta> _" | |
| 1644 | ||
| 1645 | text {*
 | |
| 1646 |   In the above example, @{ML Test.test1} evaluates to a boolean,
 | |
| 1647 |   whereas @{ML Test.test2} is a lazy sequence whose elements can be
 | |
| 1648 | inspected separately. | |
| 1649 | *} | |
| 1650 | ||
| 1651 | ML {* @{assert} Test.test1 *}
 | |
| 1652 | ML {* val results = DSeq.list_of Test.test2 *}
 | |
| 1653 | ML {* @{assert} (length results = 2) *}
 | |
| 1654 | ||
| 1655 | text {*
 | |
| 42627 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1656 | \medskip The theory underlying the HOL code generator is described | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1657 |   more detailed in \cite{Berghofer-Nipkow:2002}. More examples that
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1658 | illustrate the usage of the code generator can be found e.g.\ in | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1659 |   @{"file" "~~/src/HOL/MicroJava/J/JListExample.thy"} and @{"file"
 | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1660 | "~~/src/HOL/MicroJava/JVM/JVMListExample.thy"}. | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1661 | *} | 
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1662 | |
| 
8749742785b8
moved material about old codegen to isar-ref manual;
 wenzelm parents: 
42626diff
changeset | 1663 | |
| 27045 | 1664 | section {* Definition by specification \label{sec:hol-specification} *}
 | 
| 1665 | ||
| 1666 | text {*
 | |
| 1667 |   \begin{matharray}{rcl}
 | |
| 28761 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1668 |     @{command_def (HOL) "specification"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
 | 
| 
9ec4482c9201
updated/refined types of Isar language elements, removed special LaTeX macros;
 wenzelm parents: 
28760diff
changeset | 1669 |     @{command_def (HOL) "ax_specification"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
 | 
| 27045 | 1670 |   \end{matharray}
 | 
| 1671 | ||
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1672 |   @{rail "
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1673 |   (@@{command (HOL) specification} | @@{command (HOL) ax_specification})
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1674 |     '(' (decl +) ')' \\ (@{syntax thmdecl}? @{syntax prop} +)
 | 
| 27045 | 1675 | ; | 
| 42596 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1676 |   decl: ((@{syntax name} ':')? @{syntax term} '(' @'overloaded' ')'?)
 | 
| 
6c621a9d612a
modernized rail diagrams using @{rail} antiquotation;
 wenzelm parents: 
42215diff
changeset | 1677 | "} | 
| 27045 | 1678 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1679 |   \begin{description}
 | 
| 27045 | 1680 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1681 |   \item @{command (HOL) "specification"}~@{text "decls \<phi>"} sets up a
 | 
| 27045 | 1682 | goal stating the existence of terms with the properties specified to | 
| 1683 |   hold for the constants given in @{text decls}.  After finishing the
 | |
| 1684 | proof, the theory will be augmented with definitions for the given | |
| 1685 | constants, as well as with theorems stating the properties for these | |
| 1686 | constants. | |
| 1687 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1688 |   \item @{command (HOL) "ax_specification"}~@{text "decls \<phi>"} sets up
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1689 | a goal stating the existence of terms with the properties specified | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1690 |   to hold for the constants given in @{text decls}.  After finishing
 | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1691 | the proof, the theory will be augmented with axioms expressing the | 
| 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1692 | properties given in the first place. | 
| 27045 | 1693 | |
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1694 |   \item @{text decl} declares a constant to be defined by the
 | 
| 27045 | 1695 |   specification given.  The definition for the constant @{text c} is
 | 
| 1696 |   bound to the name @{text c_def} unless a theorem name is given in
 | |
| 1697 | the declaration. Overloaded constants should be declared as such. | |
| 1698 | ||
| 28760 
cbc435f7b16b
unified use of declaration environment with IsarImplementation;
 wenzelm parents: 
28752diff
changeset | 1699 |   \end{description}
 | 
| 27045 | 1700 | |
| 1701 |   Whether to use @{command (HOL) "specification"} or @{command (HOL)
 | |
| 1702 |   "ax_specification"} is to some extent a matter of style.  @{command
 | |
| 1703 | (HOL) "specification"} introduces no new axioms, and so by | |
| 1704 |   construction cannot introduce inconsistencies, whereas @{command
 | |
| 1705 | (HOL) "ax_specification"} does introduce axioms, but only after the | |
| 1706 | user has explicitly proven it to be safe. A practical issue must be | |
| 1707 | considered, though: After introducing two constants with the same | |
| 1708 |   properties using @{command (HOL) "specification"}, one can prove
 | |
| 1709 | that the two constants are, in fact, equal. If this might be a | |
| 1710 |   problem, one should use @{command (HOL) "ax_specification"}.
 | |
| 1711 | *} | |
| 1712 | ||
| 26840 | 1713 | end |