doc-src/IsarRef/Thy/Spec.thy
author wenzelm
Thu, 13 Nov 2008 21:43:46 +0100
changeset 28760 cbc435f7b16b
parent 28758 4ce896a30f88
child 28761 9ec4482c9201
permissions -rw-r--r--
unified use of declaration environment with IsarImplementation; tuned ML decls;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     1
(* $Id$ *)
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     2
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     3
theory Spec
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     4
imports Main
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     5
begin
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     6
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
     7
chapter {* Theory specifications *}
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     8
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
     9
section {* Defining theories \label{sec:begin-thy} *}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    10
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    11
text {*
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    12
  \begin{matharray}{rcl}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    13
    @{command_def "theory"} & : & \isartrans{toplevel}{theory} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    14
    @{command_def (global) "end"} & : & \isartrans{theory}{toplevel} \\
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    15
  \end{matharray}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    16
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    17
  Isabelle/Isar theories are defined via theory files, which may
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    18
  contain both specifications and proofs; occasionally definitional
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    19
  mechanisms also require some explicit proof.  The theory body may be
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    20
  sub-structured by means of \emph{local theory targets}, such as
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    21
  @{command "locale"} and @{command "class"}.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    22
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    23
  The first proper command of a theory is @{command "theory"}, which
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    24
  indicates imports of previous theories and optional dependencies on
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    25
  other source files (usually in ML).  Just preceding the initial
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    26
  @{command "theory"} command there may be an optional @{command
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    27
  "header"} declaration, which is only relevant to document
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    28
  preparation: see also the other section markup commands in
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    29
  \secref{sec:markup}.
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    30
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    31
  A theory is concluded by a final @{command (global) "end"} command,
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    32
  one that does not belong to a local theory target.  No further
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    33
  commands may follow such a global @{command (global) "end"},
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    34
  although some user-interfaces might pretend that trailing input is
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    35
  admissible.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    36
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    37
  \begin{rail}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    38
    'theory' name 'imports' (name +) uses? 'begin'
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    39
    ;
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    40
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    41
    uses: 'uses' ((name | parname) +);
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    42
  \end{rail}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    43
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    44
  \begin{description}
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    45
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    46
  \item @{command "theory"}~@{text "A \<IMPORTS> B\<^sub>1 \<dots> B\<^sub>n \<BEGIN>"}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    47
  starts a new theory @{text A} based on the merge of existing
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    48
  theories @{text "B\<^sub>1 \<dots> B\<^sub>n"}.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    49
  
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    50
  Due to the possibility to import more than one ancestor, the
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    51
  resulting theory structure of an Isabelle session forms a directed
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    52
  acyclic graph (DAG).  Isabelle's theory loader ensures that the
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    53
  sources contributing to the development graph are always up-to-date:
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    54
  changed files are automatically reloaded whenever a theory header
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    55
  specification is processed.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    56
  
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    57
  The optional @{keyword_def "uses"} specification declares additional
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    58
  dependencies on extra files (usually ML sources).  Files will be
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    59
  loaded immediately (as ML), unless the name is parenthesized.  The
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    60
  latter case records a dependency that needs to be resolved later in
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    61
  the text, usually via explicit @{command_ref "use"} for ML files;
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    62
  other file formats require specific load commands defined by the
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    63
  corresponding tools or packages.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    64
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    65
  \item @{command (global) "end"} concludes the current theory
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    66
  definition.  Note that local theory targets involve a local
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    67
  @{command (local) "end"}, which is clear from the nesting.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    68
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    69
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    70
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    71
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    72
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    73
section {* Local theory targets \label{sec:target} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    74
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    75
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    76
  A local theory target is a context managed separately within the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    77
  enclosing theory.  Contexts may introduce parameters (fixed
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    78
  variables) and assumptions (hypotheses).  Definitions and theorems
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    79
  depending on the context may be added incrementally later on.  Named
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    80
  contexts refer to locales (cf.\ \secref{sec:locale}) or type classes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    81
  (cf.\ \secref{sec:class}); the name ``@{text "-"}'' signifies the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    82
  global theory context.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    83
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    84
  \begin{matharray}{rcll}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    85
    @{command_def "context"} & : & \isartrans{theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    86
    @{command_def (local) "end"} & : & \isartrans{local{\dsh}theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    87
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    88
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    89
  \indexouternonterm{target}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    90
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    91
    'context' name 'begin'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    92
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    93
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    94
    target: '(' 'in' name ')'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    95
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    96
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    97
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    98
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
    99
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   100
  \item @{command "context"}~@{text "c \<BEGIN>"} recommences an
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   101
  existing locale or class context @{text c}.  Note that locale and
27051
a53dfe909674 moved header command to Document_Preparation;
wenzelm
parents: 27046
diff changeset
   102
  class definitions allow to include the @{keyword "begin"} keyword as
a53dfe909674 moved header command to Document_Preparation;
wenzelm
parents: 27046
diff changeset
   103
  well, in order to continue the local theory immediately after the
a53dfe909674 moved header command to Document_Preparation;
wenzelm
parents: 27046
diff changeset
   104
  initial specification.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   105
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   106
  \item @{command (local) "end"} concludes the current local theory
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   107
  and continues the enclosing global theory.  Note that a global
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   108
  @{command (global) "end"} has a different meaning: it concludes the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   109
  theory itself (\secref{sec:begin-thy}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   110
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   111
  \item @{text "(\<IN> c)"} given after any local theory command
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   112
  specifies an immediate target, e.g.\ ``@{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   113
  "definition"}~@{text "(\<IN> c) \<dots>"}'' or ``@{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   114
  "theorem"}~@{text "(\<IN> c) \<dots>"}''.  This works both in a local or
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   115
  global theory context; the current target context will be suspended
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   116
  for this command only.  Note that ``@{text "(\<IN> -)"}'' will
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   117
  always produce a global result independently of the current target
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   118
  context.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   119
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   120
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   121
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   122
  The exact meaning of results produced within a local theory context
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   123
  depends on the underlying target infrastructure (locale, type class
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   124
  etc.).  The general idea is as follows, considering a context named
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   125
  @{text c} with parameter @{text x} and assumption @{text "A[x]"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   126
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   127
  Definitions are exported by introducing a global version with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   128
  additional arguments; a syntactic abbreviation links the long form
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   129
  with the abstract version of the target context.  For example,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   130
  @{text "a \<equiv> t[x]"} becomes @{text "c.a ?x \<equiv> t[?x]"} at the theory
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   131
  level (for arbitrary @{text "?x"}), together with a local
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   132
  abbreviation @{text "c \<equiv> c.a x"} in the target context (for the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   133
  fixed parameter @{text x}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   134
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   135
  Theorems are exported by discharging the assumptions and
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   136
  generalizing the parameters of the context.  For example, @{text "a:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   137
  B[x]"} becomes @{text "c.a: A[?x] \<Longrightarrow> B[?x]"}, again for arbitrary
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   138
  @{text "?x"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   139
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   140
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   141
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   142
section {* Basic specification elements *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   143
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   144
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   145
  \begin{matharray}{rcll}
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   146
    @{command_def "axiomatization"} & : & \isarkeep{theory} & (axiomatic!)\\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   147
    @{command_def "definition"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   148
    @{attribute_def "defn"} & : & \isaratt \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   149
    @{command_def "abbreviation"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   150
    @{command_def "print_abbrevs"}@{text "\<^sup>*"} & : & \isarkeep{theory~|~proof} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   151
    @{command_def "notation"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   152
    @{command_def "no_notation"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   153
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   154
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   155
  These specification mechanisms provide a slightly more abstract view
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   156
  than the underlying primitives of @{command "consts"}, @{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   157
  "defs"} (see \secref{sec:consts}), and @{command "axioms"} (see
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   158
  \secref{sec:axms-thms}).  In particular, type-inference is commonly
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   159
  available, and result names need not be given.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   160
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   161
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   162
    'axiomatization' target? fixes? ('where' specs)?
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   163
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   164
    'definition' target? (decl 'where')? thmdecl? prop
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   165
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   166
    'abbreviation' target? mode? (decl 'where')? prop
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   167
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   168
    ('notation' | 'no\_notation') target? mode? (nameref structmixfix + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   169
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   170
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   171
    fixes: ((name ('::' type)? mixfix? | vars) + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   172
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   173
    specs: (thmdecl? props + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   174
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   175
    decl: name ('::' type)? mixfix?
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   176
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   177
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   178
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   179
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   180
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   181
  \item @{command "axiomatization"}~@{text "c\<^sub>1 \<dots> c\<^sub>m \<WHERE> \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   182
  introduces several constants simultaneously and states axiomatic
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   183
  properties for these.  The constants are marked as being specified
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   184
  once and for all, which prevents additional specifications being
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   185
  issued later on.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   186
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   187
  Note that axiomatic specifications are only appropriate when
28114
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   188
  declaring a new logical system; axiomatic specifications are
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   189
  restricted to global theory contexts.  Normal applications should
2637fb838f74 axiomatization is now global-only;
wenzelm
parents: 28085
diff changeset
   190
  only use definitional mechanisms!
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   191
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   192
  \item @{command "definition"}~@{text "c \<WHERE> eq"} produces an
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   193
  internal definition @{text "c \<equiv> t"} according to the specification
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   194
  given as @{text eq}, which is then turned into a proven fact.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   195
  given proposition may deviate from internal meta-level equality
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   196
  according to the rewrite rules declared as @{attribute defn} by the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   197
  object-logic.  This usually covers object-level equality @{text "x =
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   198
  y"} and equivalence @{text "A \<leftrightarrow> B"}.  End-users normally need not
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   199
  change the @{attribute defn} setup.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   200
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   201
  Definitions may be presented with explicit arguments on the LHS, as
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   202
  well as additional conditions, e.g.\ @{text "f x y = t"} instead of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   203
  @{text "f \<equiv> \<lambda>x y. t"} and @{text "y \<noteq> 0 \<Longrightarrow> g x y = u"} instead of an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   204
  unrestricted @{text "g \<equiv> \<lambda>x y. u"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   205
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   206
  \item @{command "abbreviation"}~@{text "c \<WHERE> eq"} introduces a
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   207
  syntactic constant which is associated with a certain term according
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   208
  to the meta-level equality @{text eq}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   209
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   210
  Abbreviations participate in the usual type-inference process, but
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   211
  are expanded before the logic ever sees them.  Pretty printing of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   212
  terms involves higher-order rewriting with rules stemming from
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   213
  reverted abbreviations.  This needs some care to avoid overlapping
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   214
  or looping syntactic replacements!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   215
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   216
  The optional @{text mode} specification restricts output to a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   217
  particular print mode; using ``@{text input}'' here achieves the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   218
  effect of one-way abbreviations.  The mode may also include an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   219
  ``@{keyword "output"}'' qualifier that affects the concrete syntax
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   220
  declared for abbreviations, cf.\ @{command "syntax"} in
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   221
  \secref{sec:syn-trans}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   222
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   223
  \item @{command "print_abbrevs"} prints all constant abbreviations
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   224
  of the current context.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   225
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   226
  \item @{command "notation"}~@{text "c (mx)"} associates mixfix
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   227
  syntax with an existing constant or fixed variable.  This is a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   228
  robust interface to the underlying @{command "syntax"} primitive
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   229
  (\secref{sec:syn-trans}).  Type declaration and internal syntactic
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   230
  representation of the given entity is retrieved from the context.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   231
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   232
  \item @{command "no_notation"} is similar to @{command "notation"},
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   233
  but removes the specified syntax annotation from the present
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   234
  context.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   235
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   236
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   237
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   238
  All of these specifications support local theory targets (cf.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   239
  \secref{sec:target}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   240
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   241
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   242
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   243
section {* Generic declarations *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   244
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   245
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   246
  Arbitrary operations on the background context may be wrapped-up as
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   247
  generic declaration elements.  Since the underlying concept of local
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   248
  theories may be subject to later re-interpretation, there is an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   249
  additional dependency on a morphism that tells the difference of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   250
  original declaration context wrt.\ the application context
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   251
  encountered later on.  A fact declaration is an important special
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   252
  case: it consists of a theorem which is applied to the context by
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   253
  means of an attribute.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   254
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   255
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   256
    @{command_def "declaration"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   257
    @{command_def "declare"} & : & \isarkeep{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   258
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   259
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   260
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   261
    'declaration' target? text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   262
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   263
    'declare' target? (thmrefs + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   264
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   265
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   266
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   267
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   268
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   269
  \item @{command "declaration"}~@{text d} adds the declaration
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   270
  function @{text d} of ML type @{ML_type declaration}, to the current
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   271
  local theory under construction.  In later application contexts, the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   272
  function is transformed according to the morphisms being involved in
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   273
  the interpretation hierarchy.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   274
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   275
  \item @{command "declare"}~@{text thms} declares theorems to the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   276
  current local theory context.  No theorem binding is involved here,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   277
  unlike @{command "theorems"} or @{command "lemmas"} (cf.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   278
  \secref{sec:axms-thms}), so @{command "declare"} only has the effect
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   279
  of applying attributes as included in the theorem specification.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   280
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   281
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   282
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   283
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   284
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   285
section {* Locales \label{sec:locale} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   286
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   287
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   288
  Locales are named local contexts, consisting of a list of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   289
  declaration elements that are modeled after the Isar proof context
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   290
  commands (cf.\ \secref{sec:proof-context}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   291
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   292
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   293
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   294
subsection {* Locale specifications *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   295
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   296
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   297
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   298
    @{command_def "locale"} & : & \isartrans{theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   299
    @{command_def "print_locale"}@{text "\<^sup>*"} & : & \isarkeep{theory~|~proof} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   300
    @{command_def "print_locales"}@{text "\<^sup>*"} & : & \isarkeep{theory~|~proof} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   301
    @{method_def intro_locales} & : & \isarmeth \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   302
    @{method_def unfold_locales} & : & \isarmeth \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   303
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   304
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   305
  \indexouternonterm{contextexpr}\indexouternonterm{contextelem}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   306
  \indexisarelem{fixes}\indexisarelem{constrains}\indexisarelem{assumes}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   307
  \indexisarelem{defines}\indexisarelem{notes}\indexisarelem{includes}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   308
  \begin{rail}
27681
8cedebf55539 dropped locale (open)
haftmann
parents: 27200
diff changeset
   309
    'locale' name ('=' localeexpr)? 'begin'?
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   310
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   311
    'print\_locale' '!'? localeexpr
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   312
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   313
    localeexpr: ((contextexpr '+' (contextelem+)) | contextexpr | (contextelem+))
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   314
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   315
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   316
    contextexpr: nameref | '(' contextexpr ')' |
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   317
    (contextexpr (name mixfix? +)) | (contextexpr + '+')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   318
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   319
    contextelem: fixes | constrains | assumes | defines | notes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   320
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   321
    fixes: 'fixes' ((name ('::' type)? structmixfix? | vars) + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   322
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   323
    constrains: 'constrains' (name '::' type + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   324
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   325
    assumes: 'assumes' (thmdecl? props + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   326
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   327
    defines: 'defines' (thmdecl? prop proppat? + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   328
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   329
    notes: 'notes' (thmdef? thmrefs + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   330
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   331
    includes: 'includes' contextexpr
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   332
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   333
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   334
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   335
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   336
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   337
  \item @{command "locale"}~@{text "loc = import + body"} defines a
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   338
  new locale @{text loc} as a context consisting of a certain view of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   339
  existing locales (@{text import}) plus some additional elements
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   340
  (@{text body}).  Both @{text import} and @{text body} are optional;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   341
  the degenerate form @{command "locale"}~@{text loc} defines an empty
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   342
  locale, which may still be useful to collect declarations of facts
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   343
  later on.  Type-inference on locale expressions automatically takes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   344
  care of the most general typing that the combined context elements
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   345
  may acquire.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   346
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   347
  The @{text import} consists of a structured context expression,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   348
  consisting of references to existing locales, renamed contexts, or
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   349
  merged contexts.  Renaming uses positional notation: @{text "c
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   350
  x\<^sub>1 \<dots> x\<^sub>n"} means that (a prefix of) the fixed
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   351
  parameters of context @{text c} are named @{text "x\<^sub>1, \<dots>,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   352
  x\<^sub>n"}; a ``@{text _}'' (underscore) means to skip that
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   353
  position.  Renaming by default deletes concrete syntax, but new
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   354
  syntax may by specified with a mixfix annotation.  An exeption of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   355
  this rule is the special syntax declared with ``@{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   356
  "(\<STRUCTURE>)"}'' (see below), which is neither deleted nor can it
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   357
  be changed.  Merging proceeds from left-to-right, suppressing any
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   358
  duplicates stemming from different paths through the import
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   359
  hierarchy.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   360
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   361
  The @{text body} consists of basic context elements, further context
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   362
  expressions may be included as well.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   363
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   364
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   365
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   366
  \item @{element "fixes"}~@{text "x :: \<tau> (mx)"} declares a local
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   367
  parameter of type @{text \<tau>} and mixfix annotation @{text mx} (both
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   368
  are optional).  The special syntax declaration ``@{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   369
  "(\<STRUCTURE>)"}'' means that @{text x} may be referenced
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   370
  implicitly in this context.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   371
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   372
  \item @{element "constrains"}~@{text "x :: \<tau>"} introduces a type
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   373
  constraint @{text \<tau>} on the local parameter @{text x}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   374
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   375
  \item @{element "assumes"}~@{text "a: \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   376
  introduces local premises, similar to @{command "assume"} within a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   377
  proof (cf.\ \secref{sec:proof-context}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   378
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   379
  \item @{element "defines"}~@{text "a: x \<equiv> t"} defines a previously
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   380
  declared parameter.  This is similar to @{command "def"} within a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   381
  proof (cf.\ \secref{sec:proof-context}), but @{element "defines"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   382
  takes an equational proposition instead of variable-term pair.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   383
  left-hand side of the equation may have additional arguments, e.g.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   384
  ``@{element "defines"}~@{text "f x\<^sub>1 \<dots> x\<^sub>n \<equiv> t"}''.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   385
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   386
  \item @{element "notes"}~@{text "a = b\<^sub>1 \<dots> b\<^sub>n"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   387
  reconsiders facts within a local context.  Most notably, this may
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   388
  include arbitrary declarations in any attribute specifications
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   389
  included here, e.g.\ a local @{attribute simp} rule.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   390
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   391
  \item @{element "includes"}~@{text c} copies the specified context
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   392
  in a statically scoped manner.  Only available in the long goal
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   393
  format of \secref{sec:goals}.
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   394
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   395
  In contrast, the initial @{text import} specification of a locale
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   396
  expression maintains a dynamic relation to the locales being
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   397
  referenced (benefiting from any later fact declarations in the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   398
  obvious manner).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   399
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   400
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   401
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   402
  Note that ``@{text "(\<IS> p\<^sub>1 \<dots> p\<^sub>n)"}'' patterns given
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   403
  in the syntax of @{element "assumes"} and @{element "defines"} above
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   404
  are illegal in locale definitions.  In the long goal format of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   405
  \secref{sec:goals}, term bindings may be included as expected,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   406
  though.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   407
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   408
  \medskip By default, locale specifications are ``closed up'' by
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   409
  turning the given text into a predicate definition @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   410
  loc_axioms} and deriving the original assumptions as local lemmas
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   411
  (modulo local definitions).  The predicate statement covers only the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   412
  newly specified assumptions, omitting the content of included locale
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   413
  expressions.  The full cumulative view is only provided on export,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   414
  involving another predicate @{text loc} that refers to the complete
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   415
  specification text.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   416
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   417
  In any case, the predicate arguments are those locale parameters
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   418
  that actually occur in the respective piece of text.  Also note that
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   419
  these predicates operate at the meta-level in theory, but the locale
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   420
  packages attempts to internalize statements according to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   421
  object-logic setup (e.g.\ replacing @{text \<And>} by @{text \<forall>}, and
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   422
  @{text "\<Longrightarrow>"} by @{text "\<longrightarrow>"} in HOL; see also
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   423
  \secref{sec:object-logic}).  Separate introduction rules @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   424
  loc_axioms.intro} and @{text loc.intro} are provided as well.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   425
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   426
  \item @{command "print_locale"}~@{text "import + body"} prints the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   427
  specified locale expression in a flattened form.  The notable
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   428
  special case @{command "print_locale"}~@{text loc} just prints the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   429
  contents of the named locale, but keep in mind that type-inference
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   430
  will normalize type variables according to the usual alphabetical
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   431
  order.  The command omits @{element "notes"} elements by default.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   432
  Use @{command "print_locale"}@{text "!"} to get them included.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   433
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   434
  \item @{command "print_locales"} prints the names of all locales
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   435
  of the current theory.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   436
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   437
  \item @{method intro_locales} and @{method unfold_locales}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   438
  repeatedly expand all introduction rules of locale predicates of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   439
  theory.  While @{method intro_locales} only applies the @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   440
  loc.intro} introduction rules and therefore does not decend to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   441
  assumptions, @{method unfold_locales} is more aggressive and applies
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   442
  @{text loc_axioms.intro} as well.  Both methods are aware of locale
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   443
  specifications entailed by the context, both from target and
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   444
  @{element "includes"} statements, and from interpretations (see
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   445
  below).  New goals that are entailed by the current context are
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   446
  discharged automatically.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   447
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   448
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   449
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   450
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   451
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   452
subsection {* Interpretation of locales *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   453
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   454
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   455
  Locale expressions (more precisely, \emph{context expressions}) may
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   456
  be instantiated, and the instantiated facts added to the current
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   457
  context.  This requires a proof of the instantiated specification
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   458
  and is called \emph{locale interpretation}.  Interpretation is
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   459
  possible in theories and locales (command @{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   460
  "interpretation"}) and also within a proof body (command @{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   461
  "interpret"}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   462
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   463
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   464
    @{command_def "interpretation"} & : & \isartrans{theory}{proof(prove)} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   465
    @{command_def "interpret"} & : & \isartrans{proof(state) ~|~ proof(chain)}{proof(prove)} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   466
    @{command_def "print_interps"}@{text "\<^sup>*"} & : &  \isarkeep{theory~|~proof} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   467
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   468
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   469
  \indexouternonterm{interp}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   470
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   471
    'interpretation' (interp | name ('<' | subseteq) contextexpr)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   472
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   473
    'interpret' interp
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   474
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   475
    'print\_interps' '!'? name
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   476
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   477
    instantiation: ('[' (inst+) ']')?
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   478
    ;
28085
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   479
    interp: (name ':')? \\ (contextexpr instantiation |
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   480
      name instantiation 'where' (thmdecl? prop + 'and'))
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   481
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   482
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   483
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   484
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   485
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   486
  \item @{command "interpretation"}~@{text "expr insts \<WHERE> eqns"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   487
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   488
  The first form of @{command "interpretation"} interprets @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   489
  expr} in the theory.  The instantiation is given as a list of terms
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   490
  @{text insts} and is positional.  All parameters must receive an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   491
  instantiation term --- with the exception of defined parameters.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   492
  These are, if omitted, derived from the defining equation and other
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   493
  instantiations.  Use ``@{text _}'' to omit an instantiation term.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   494
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   495
  The command generates proof obligations for the instantiated
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   496
  specifications (assumes and defines elements).  Once these are
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   497
  discharged by the user, instantiated facts are added to the theory
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   498
  in a post-processing phase.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   499
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   500
  Additional equations, which are unfolded in facts during
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   501
  post-processing, may be given after the keyword @{keyword "where"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   502
  This is useful for interpreting concepts introduced through
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   503
  definition specification elements.  The equations must be proved.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   504
  Note that if equations are present, the context expression is
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   505
  restricted to a locale name.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   506
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   507
  The command is aware of interpretations already active in the
28085
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   508
  theory, but does not simplify the goal automatically.  In order to
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   509
  simplify the proof obligations use methods @{method intro_locales}
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   510
  or @{method unfold_locales}.  Post-processing is not applied to
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   511
  facts of interpretations that are already active.  This avoids
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   512
  duplication of interpreted facts, in particular.  Note that, in the
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   513
  case of a locale with import, parts of the interpretation may
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   514
  already be active.  The command will only process facts for new
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   515
  parts.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   516
28085
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   517
  The context expression may be preceded by a name, which takes effect
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   518
  in the post-processing of facts.  It is used to prefix fact names,
914183e229e9 Interpretation commands no longer accept interpretation attributes.
ballarin
parents: 27681
diff changeset
   519
  for example to avoid accidental hiding of other facts.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   520
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   521
  Adding facts to locales has the effect of adding interpreted facts
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   522
  to the theory for all active interpretations also.  That is,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   523
  interpretations dynamically participate in any facts added to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   524
  locales.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   525
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   526
  \item @{command "interpretation"}~@{text "name \<subseteq> expr"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   527
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   528
  This form of the command interprets @{text expr} in the locale
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   529
  @{text name}.  It requires a proof that the specification of @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   530
  name} implies the specification of @{text expr}.  As in the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   531
  localized version of the theorem command, the proof is in the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   532
  context of @{text name}.  After the proof obligation has been
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   533
  dischared, the facts of @{text expr} become part of locale @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   534
  name} as \emph{derived} context elements and are available when the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   535
  context @{text name} is subsequently entered.  Note that, like
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   536
  import, this is dynamic: facts added to a locale part of @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   537
  expr} after interpretation become also available in @{text name}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   538
  Like facts of renamed context elements, facts obtained by
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   539
  interpretation may be accessed by prefixing with the parameter
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   540
  renaming (where the parameters are separated by ``@{text _}'').
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   541
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   542
  Unlike interpretation in theories, instantiation is confined to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   543
  renaming of parameters, which may be specified as part of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   544
  context expression @{text expr}.  Using defined parameters in @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   545
  name} one may achieve an effect similar to instantiation, though.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   546
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   547
  Only specification fragments of @{text expr} that are not already
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   548
  part of @{text name} (be it imported, derived or a derived fragment
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   549
  of the import) are considered by interpretation.  This enables
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   550
  circular interpretations.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   551
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   552
  If interpretations of @{text name} exist in the current theory, the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   553
  command adds interpretations for @{text expr} as well, with the same
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   554
  prefix and attributes, although only for fragments of @{text expr}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   555
  that are not interpreted in the theory already.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   556
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   557
  \item @{command "interpret"}~@{text "expr insts \<WHERE> eqns"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   558
  interprets @{text expr} in the proof context and is otherwise
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   559
  similar to interpretation in theories.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   560
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   561
  \item @{command "print_interps"}~@{text loc} prints the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   562
  interpretations of a particular locale @{text loc} that are active
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   563
  in the current context, either theory or proof context.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   564
  exclamation point argument triggers printing of \emph{witness}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   565
  theorems justifying interpretations.  These are normally omitted
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   566
  from the output.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   567
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   568
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   569
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   570
  \begin{warn}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   571
    Since attributes are applied to interpreted theorems,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   572
    interpretation may modify the context of common proof tools, e.g.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   573
    the Simplifier or Classical Reasoner.  Since the behavior of such
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   574
    automated reasoning tools is \emph{not} stable under
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   575
    interpretation morphisms, manual declarations might have to be
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   576
    issued.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   577
  \end{warn}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   578
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   579
  \begin{warn}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   580
    An interpretation in a theory may subsume previous
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   581
    interpretations.  This happens if the same specification fragment
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   582
    is interpreted twice and the instantiation of the second
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   583
    interpretation is more general than the interpretation of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   584
    first.  A warning is issued, since it is likely that these could
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   585
    have been generalized in the first place.  The locale package does
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   586
    not attempt to remove subsumed interpretations.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   587
  \end{warn}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   588
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   589
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   590
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   591
section {* Classes \label{sec:class} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   592
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   593
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   594
  A class is a particular locale with \emph{exactly one} type variable
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   595
  @{text \<alpha>}.  Beyond the underlying locale, a corresponding type class
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   596
  is established which is interpreted logically as axiomatic type
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   597
  class \cite{Wenzel:1997:TPHOL} whose logical content are the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   598
  assumptions of the locale.  Thus, classes provide the full
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   599
  generality of locales combined with the commodity of type classes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   600
  (notably type-inference).  See \cite{isabelle-classes} for a short
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   601
  tutorial.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   602
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   603
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   604
    @{command_def "class"} & : & \isartrans{theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   605
    @{command_def "instantiation"} & : & \isartrans{theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   606
    @{command_def "instance"} & : & \isartrans{local{\dsh}theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   607
    @{command_def "subclass"} & : & \isartrans{local{\dsh}theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   608
    @{command_def "print_classes"}@{text "\<^sup>*"} & : & \isarkeep{theory~|~proof} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   609
    @{method_def intro_classes} & : & \isarmeth \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   610
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   611
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   612
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   613
    'class' name '=' ((superclassexpr '+' (contextelem+)) | superclassexpr | (contextelem+)) \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   614
      'begin'?
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   615
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   616
    'instantiation' (nameref + 'and') '::' arity 'begin'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   617
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   618
    'instance'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   619
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   620
    'subclass' target? nameref
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   621
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   622
    'print\_classes'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   623
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   624
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   625
    superclassexpr: nameref | (nameref '+' superclassexpr)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   626
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   627
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   628
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   629
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   630
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   631
  \item @{command "class"}~@{text "c = superclasses + body"} defines
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   632
  a new class @{text c}, inheriting from @{text superclasses}.  This
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   633
  introduces a locale @{text c} with import of all locales @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   634
  superclasses}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   635
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   636
  Any @{element "fixes"} in @{text body} are lifted to the global
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   637
  theory level (\emph{class operations} @{text "f\<^sub>1, \<dots>,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   638
  f\<^sub>n"} of class @{text c}), mapping the local type parameter
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   639
  @{text \<alpha>} to a schematic type variable @{text "?\<alpha> :: c"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   640
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   641
  Likewise, @{element "assumes"} in @{text body} are also lifted,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   642
  mapping each local parameter @{text "f :: \<tau>[\<alpha>]"} to its
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   643
  corresponding global constant @{text "f :: \<tau>[?\<alpha> :: c]"}.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   644
  corresponding introduction rule is provided as @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   645
  c_class_axioms.intro}.  This rule should be rarely needed directly
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   646
  --- the @{method intro_classes} method takes care of the details of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   647
  class membership proofs.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   648
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   649
  \item @{command "instantiation"}~@{text "t :: (s\<^sub>1, \<dots>, s\<^sub>n) s
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   650
  \<BEGIN>"} opens a theory target (cf.\ \secref{sec:target}) which
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   651
  allows to specify class operations @{text "f\<^sub>1, \<dots>, f\<^sub>n"} corresponding
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   652
  to sort @{text s} at the particular type instance @{text "(\<alpha>\<^sub>1 :: s\<^sub>1,
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   653
  \<dots>, \<alpha>\<^sub>n :: s\<^sub>n) t"}.  A plain @{command "instance"} command in the
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   654
  target body poses a goal stating these type arities.  The target is
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   655
  concluded by an @{command_ref (local) "end"} command.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   656
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   657
  Note that a list of simultaneous type constructors may be given;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   658
  this corresponds nicely to mutual recursive type definitions, e.g.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   659
  in Isabelle/HOL.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   660
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   661
  \item @{command "instance"} in an instantiation target body sets
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   662
  up a goal stating the type arities claimed at the opening @{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   663
  "instantiation"}.  The proof would usually proceed by @{method
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   664
  intro_classes}, and then establish the characteristic theorems of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   665
  the type classes involved.  After finishing the proof, the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   666
  background theory will be augmented by the proven type arities.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   667
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   668
  \item @{command "subclass"}~@{text c} in a class context for class
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   669
  @{text d} sets up a goal stating that class @{text c} is logically
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   670
  contained in class @{text d}.  After finishing the proof, class
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   671
  @{text d} is proven to be subclass @{text c} and the locale @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   672
  c} is interpreted into @{text d} simultaneously.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   673
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   674
  \item @{command "print_classes"} prints all classes in the current
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   675
  theory.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   676
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   677
  \item @{method intro_classes} repeatedly expands all class
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   678
  introduction rules of this theory.  Note that this method usually
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   679
  needs not be named explicitly, as it is already included in the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   680
  default proof step (e.g.\ of @{command "proof"}).  In particular,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   681
  instantiation of trivial (syntactic) classes may be performed by a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   682
  single ``@{command ".."}'' proof step.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
   683
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   684
  \end{description}
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
   685
*}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
   686
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   687
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   688
subsection {* The class target *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   689
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   690
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   691
  %FIXME check
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   692
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   693
  A named context may refer to a locale (cf.\ \secref{sec:target}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   694
  If this locale is also a class @{text c}, apart from the common
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   695
  locale target behaviour the following happens.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   696
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   697
  \begin{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   698
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   699
  \item Local constant declarations @{text "g[\<alpha>]"} referring to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   700
  local type parameter @{text \<alpha>} and local parameters @{text "f[\<alpha>]"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   701
  are accompanied by theory-level constants @{text "g[?\<alpha> :: c]"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   702
  referring to theory-level class operations @{text "f[?\<alpha> :: c]"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   703
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   704
  \item Local theorem bindings are lifted as are assumptions.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   705
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   706
  \item Local syntax refers to local operations @{text "g[\<alpha>]"} and
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   707
  global operations @{text "g[?\<alpha> :: c]"} uniformly.  Type inference
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   708
  resolves ambiguities.  In rare cases, manual type annotations are
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   709
  needed.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   710
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   711
  \end{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   712
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   713
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   714
27053
wenzelm
parents: 27051
diff changeset
   715
subsection {* Old-style axiomatic type classes \label{sec:axclass} *}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   716
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   717
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   718
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   719
    @{command_def "axclass"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   720
    @{command_def "instance"} & : & \isartrans{theory}{proof(prove)} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   721
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   722
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   723
  Axiomatic type classes are Isabelle/Pure's primitive
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   724
  \emph{definitional} interface to type classes.  For practical
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   725
  applications, you should consider using classes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   726
  (cf.~\secref{sec:classes}) which provide high level interface.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   727
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   728
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   729
    'axclass' classdecl (axmdecl prop +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   730
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   731
    'instance' (nameref ('<' | subseteq) nameref | nameref '::' arity)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   732
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   733
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   734
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   735
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   736
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   737
  \item @{command "axclass"}~@{text "c \<subseteq> c\<^sub>1, \<dots>, c\<^sub>n axms"} defines an
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   738
  axiomatic type class as the intersection of existing classes, with
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   739
  additional axioms holding.  Class axioms may not contain more than
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   740
  one type variable.  The class axioms (with implicit sort constraints
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   741
  added) are bound to the given names.  Furthermore a class
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   742
  introduction rule is generated (being bound as @{text
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   743
  c_class.intro}); this rule is employed by method @{method
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   744
  intro_classes} to support instantiation proofs of this class.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   745
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   746
  The ``class axioms'' are stored as theorems according to the given
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   747
  name specifications, adding @{text "c_class"} as name space prefix;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   748
  the same facts are also stored collectively as @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   749
  c_class.axioms}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   750
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   751
  \item @{command "instance"}~@{text "c\<^sub>1 \<subseteq> c\<^sub>2"} and @{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   752
  "instance"}~@{text "t :: (s\<^sub>1, \<dots>, s\<^sub>n) s"} setup a goal stating a
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   753
  class relation or type arity.  The proof would usually proceed by
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   754
  @{method intro_classes}, and then establish the characteristic
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   755
  theorems of the type classes involved.  After finishing the proof,
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   756
  the theory will be augmented by a type signature declaration
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   757
  corresponding to the resulting theorem.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   758
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   759
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   760
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   761
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   762
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   763
section {* Unrestricted overloading *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   764
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   765
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   766
  Isabelle/Pure's definitional schemes support certain forms of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   767
  overloading (see \secref{sec:consts}).  At most occassions
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   768
  overloading will be used in a Haskell-like fashion together with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   769
  type classes by means of @{command "instantiation"} (see
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   770
  \secref{sec:class}).  Sometimes low-level overloading is desirable.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   771
  The @{command "overloading"} target provides a convenient view for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   772
  end-users.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   773
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   774
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   775
    @{command_def "overloading"} & : & \isartrans{theory}{local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   776
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   777
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   778
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   779
    'overloading' \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   780
    ( string ( '==' | equiv ) term ( '(' 'unchecked' ')' )? + ) 'begin'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   781
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   782
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   783
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   784
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   785
  \item @{command "overloading"}~@{text "x\<^sub>1 \<equiv> c\<^sub>1 :: \<tau>\<^sub>1 \<AND> \<dots> x\<^sub>n \<equiv> c\<^sub>n :: \<tau>\<^sub>n \<BEGIN>"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   786
  opens a theory target (cf.\ \secref{sec:target}) which allows to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   787
  specify constants with overloaded definitions.  These are identified
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   788
  by an explicitly given mapping from variable names @{text "x\<^sub>i"} to
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   789
  constants @{text "c\<^sub>i"} at particular type instances.  The
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   790
  definitions themselves are established using common specification
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   791
  tools, using the names @{text "x\<^sub>i"} as reference to the
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   792
  corresponding constants.  The target is concluded by @{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   793
  (local) "end"}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   794
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   795
  A @{text "(unchecked)"} option disables global dependency checks for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   796
  the corresponding definition, which is occasionally useful for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   797
  exotic overloading.  It is at the discretion of the user to avoid
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   798
  malformed theory specifications!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   799
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   800
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   801
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   802
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   803
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   804
section {* Incorporating ML code \label{sec:ML} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   805
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   806
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   807
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   808
    @{command_def "use"} & : & \isarkeep{theory~|~local{\dsh}theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   809
    @{command_def "ML"} & : & \isarkeep{theory~|~local{\dsh}theory} \\
28281
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   810
    @{command_def "ML_prf"} & : & \isarkeep{proof} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   811
    @{command_def "ML_val"} & : & \isartrans{\cdot}{\cdot} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   812
    @{command_def "ML_command"} & : & \isartrans{\cdot}{\cdot} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   813
    @{command_def "setup"} & : & \isartrans{theory}{theory} \\
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   814
  \end{matharray}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   815
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   816
  \begin{mldecls}
28758
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   817
    @{index_ML bind_thms: "string * thm list -> unit"} \\
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   818
    @{index_ML bind_thm: "string * thm -> unit"} \\
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   819
  \end{mldecls}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   820
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   821
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   822
    'use' name
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   823
    ;
28757
7f7002ad6289 tuned section "Incorporating ML code";
wenzelm
parents: 28756
diff changeset
   824
    ('ML' | 'ML\_prf' | 'ML\_val' | 'ML\_command' | 'setup') text
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   825
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   826
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   827
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   828
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   829
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   830
  \item @{command "use"}~@{text "file"} reads and executes ML
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   831
  commands from @{text "file"}.  The current theory context is passed
28757
7f7002ad6289 tuned section "Incorporating ML code";
wenzelm
parents: 28756
diff changeset
   832
  down to the ML toplevel and may be modified, using @{ML [source=false]
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   833
  "Context.>>"} or derived ML commands.  The file name is checked with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   834
  the @{keyword_ref "uses"} dependency declaration given in the theory
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   835
  header (see also \secref{sec:begin-thy}).
28281
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   836
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   837
  Top-level ML bindings are stored within the (global or local) theory
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   838
  context.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   839
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   840
  \item @{command "ML"}~@{text "text"} is similar to @{command "use"},
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   841
  but executes ML commands directly from the given @{text "text"}.
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   842
  Top-level ML bindings are stored within the (global or local) theory
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   843
  context.
28281
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   844
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   845
  \item @{command "ML_prf"} is analogous to @{command "ML"} but works
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   846
  within a proof context.
28281
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   847
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   848
  Top-level ML bindings are stored within the proof context in a
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   849
  purely sequential fashion, disregarding the nested proof structure.
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   850
  ML bindings introduced by @{command "ML_prf"} are discarded at the
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
   851
  end of the proof.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   852
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   853
  \item @{command "ML_val"} and @{command "ML_command"} are diagnostic
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   854
  versions of @{command "ML"}, which means that the context may not be
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   855
  updated.  @{command "ML_val"} echos the bindings produced at the ML
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   856
  toplevel, but @{command "ML_command"} is silent.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   857
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   858
  \item @{command "setup"}~@{text "text"} changes the current theory
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   859
  context by applying @{text "text"}, which refers to an ML expression
28757
7f7002ad6289 tuned section "Incorporating ML code";
wenzelm
parents: 28756
diff changeset
   860
  of type @{ML_type [source=false] "theory -> theory"}.  This enables
7f7002ad6289 tuned section "Incorporating ML code";
wenzelm
parents: 28756
diff changeset
   861
  to initialize any object-logic specific tools and packages written
7f7002ad6289 tuned section "Incorporating ML code";
wenzelm
parents: 28756
diff changeset
   862
  in ML, for example.
28758
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   863
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   864
  \item @{ML bind_thms}~@{text "(name, thms)"} stores a list of
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   865
  theorems produced in ML both in the theory context and the ML
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   866
  toplevel, associating it with the provided name.  Theorems are put
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   867
  into a global ``standard'' format before being stored.
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   868
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   869
  \item @{ML bind_thm} is similar to @{ML bind_thms} but refers to a
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
   870
  singleton theorem.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   871
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   872
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   873
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   874
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   875
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   876
section {* Primitive specification elements *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   877
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   878
subsection {* Type classes and sorts \label{sec:classes} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   879
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   880
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   881
  \begin{matharray}{rcll}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   882
    @{command_def "classes"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   883
    @{command_def "classrel"} & : & \isartrans{theory}{theory} & (axiomatic!) \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   884
    @{command_def "defaultsort"} & : & \isartrans{theory}{theory} \\
27059
f46c75ca14ff class_deps: improper;
wenzelm
parents: 27053
diff changeset
   885
    @{command_def "class_deps"}@{text "\<^sup>*"} & : & \isarkeep{theory~|~proof} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   886
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   887
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   888
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   889
    'classes' (classdecl +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   890
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   891
    'classrel' (nameref ('<' | subseteq) nameref + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   892
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   893
    'defaultsort' sort
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   894
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   895
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   896
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   897
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   898
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   899
  \item @{command "classes"}~@{text "c \<subseteq> c\<^sub>1, \<dots>, c\<^sub>n"} declares class
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   900
  @{text c} to be a subclass of existing classes @{text "c\<^sub>1, \<dots>, c\<^sub>n"}.
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   901
  Cyclic class structures are not permitted.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   902
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   903
  \item @{command "classrel"}~@{text "c\<^sub>1 \<subseteq> c\<^sub>2"} states subclass
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   904
  relations between existing classes @{text "c\<^sub>1"} and @{text "c\<^sub>2"}.
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   905
  This is done axiomatically!  The @{command_ref "instance"} command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   906
  (see \secref{sec:axclass}) provides a way to introduce proven class
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   907
  relations.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   908
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   909
  \item @{command "defaultsort"}~@{text s} makes sort @{text s} the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   910
  new default sort for any type variables given without sort
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   911
  constraints.  Usually, the default sort would be only changed when
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   912
  defining a new object-logic.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   913
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   914
  \item @{command "class_deps"} visualizes the subclass relation,
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   915
  using Isabelle's graph browser tool (see also \cite{isabelle-sys}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   916
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   917
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   918
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   919
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   920
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   921
subsection {* Types and type abbreviations \label{sec:types-pure} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   922
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   923
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   924
  \begin{matharray}{rcll}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   925
    @{command_def "types"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   926
    @{command_def "typedecl"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   927
    @{command_def "nonterminals"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   928
    @{command_def "arities"} & : & \isartrans{theory}{theory} & (axiomatic!) \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   929
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   930
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   931
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   932
    'types' (typespec '=' type infix? +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   933
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   934
    'typedecl' typespec infix?
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   935
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   936
    'nonterminals' (name +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   937
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   938
    'arities' (nameref '::' arity +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   939
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   940
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   941
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   942
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   943
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   944
  \item @{command "types"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t = \<tau>"} introduces
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   945
  \emph{type synonym} @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t"} for existing type @{text
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   946
  "\<tau>"}.  Unlike actual type definitions, as are available in
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   947
  Isabelle/HOL for example, type synonyms are just purely syntactic
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   948
  abbreviations without any logical significance.  Internally, type
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   949
  synonyms are fully expanded.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   950
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   951
  \item @{command "typedecl"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t"} declares a new
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   952
  type constructor @{text t}, intended as an actual logical type (of
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   953
  the object-logic, if available).
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   954
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   955
  \item @{command "nonterminals"}~@{text c} declares type constructors
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   956
  @{text c} (without arguments) to act as purely syntactic types,
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   957
  i.e.\ nonterminal symbols of Isabelle's inner syntax of terms or
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   958
  types.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   959
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   960
  \item @{command "arities"}~@{text "t :: (s\<^sub>1, \<dots>, s\<^sub>n) s"} augments
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   961
  Isabelle's order-sorted signature of types by new type constructor
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   962
  arities.  This is done axiomatically!  The @{command_ref "instance"}
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   963
  command (see \S\ref{sec:axclass}) provides a way to introduce proven
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   964
  type arities.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   965
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   966
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   967
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   968
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   969
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   970
subsection {* Constants and definitions \label{sec:consts} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   971
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   972
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   973
  Definitions essentially express abbreviations within the logic.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   974
  simplest form of a definition is @{text "c :: \<sigma> \<equiv> t"}, where @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   975
  c} is a newly declared constant.  Isabelle also allows derived forms
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   976
  where the arguments of @{text c} appear on the left, abbreviating a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   977
  prefix of @{text \<lambda>}-abstractions, e.g.\ @{text "c \<equiv> \<lambda>x y. t"} may be
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   978
  written more conveniently as @{text "c x y \<equiv> t"}.  Moreover,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   979
  definitions may be weakened by adding arbitrary pre-conditions:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   980
  @{text "A \<Longrightarrow> c x y \<equiv> t"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   981
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   982
  \medskip The built-in well-formedness conditions for definitional
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   983
  specifications are:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   984
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   985
  \begin{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   986
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   987
  \item Arguments (on the left-hand side) must be distinct variables.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   988
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   989
  \item All variables on the right-hand side must also appear on the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   990
  left-hand side.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   991
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   992
  \item All type variables on the right-hand side must also appear on
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   993
  the left-hand side; this prohibits @{text "0 :: nat \<equiv> length ([] ::
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   994
  \<alpha> list)"} for example.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   995
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   996
  \item The definition must not be recursive.  Most object-logics
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   997
  provide definitional principles that can be used to express
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   998
  recursion safely.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   999
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1000
  \end{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1001
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1002
  Overloading means that a constant being declared as @{text "c :: \<alpha>
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1003
  decl"} may be defined separately on type instances @{text "c ::
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1004
  (\<beta>\<^sub>1, \<dots>, \<beta>\<^sub>n) t decl"} for each type constructor @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1005
  t}.  The right-hand side may mention overloaded constants
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1006
  recursively at type instances corresponding to the immediate
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1007
  argument types @{text "\<beta>\<^sub>1, \<dots>, \<beta>\<^sub>n"}.  Incomplete
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1008
  specification patterns impose global constraints on all occurrences,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1009
  e.g.\ @{text "d :: \<alpha> \<times> \<alpha>"} on the left-hand side means that all
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1010
  corresponding occurrences on some right-hand side need to be an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1011
  instance of this, general @{text "d :: \<alpha> \<times> \<beta>"} will be disallowed.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1012
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1013
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1014
    @{command_def "consts"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1015
    @{command_def "defs"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1016
    @{command_def "constdefs"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1017
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1018
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1019
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1020
    'consts' ((name '::' type mixfix?) +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1021
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1022
    'defs' ('(' 'unchecked'? 'overloaded'? ')')? \\ (axmdecl prop +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1023
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1024
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1025
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1026
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1027
    'constdefs' structs? (constdecl? constdef +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1028
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1029
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1030
    structs: '(' 'structure' (vars + 'and') ')'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1031
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1032
    constdecl:  ((name '::' type mixfix | name '::' type | name mixfix) 'where'?) | name 'where'
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1033
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1034
    constdef: thmdecl? prop
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1035
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1036
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1037
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1038
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1039
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1040
  \item @{command "consts"}~@{text "c :: \<sigma>"} declares constant @{text
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1041
  c} to have any instance of type scheme @{text \<sigma>}.  The optional
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1042
  mixfix annotations may attach concrete syntax to the constants
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1043
  declared.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1044
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1045
  \item @{command "defs"}~@{text "name: eqn"} introduces @{text eqn}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1046
  as a definitional axiom for some existing constant.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1047
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1048
  The @{text "(unchecked)"} option disables global dependency checks
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1049
  for this definition, which is occasionally useful for exotic
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1050
  overloading.  It is at the discretion of the user to avoid malformed
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1051
  theory specifications!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1052
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1053
  The @{text "(overloaded)"} option declares definitions to be
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1054
  potentially overloaded.  Unless this option is given, a warning
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1055
  message would be issued for any definitional equation with a more
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1056
  special type than that of the corresponding constant declaration.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1057
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1058
  \item @{command "constdefs"} provides a streamlined combination of
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1059
  constants declarations and definitions: type-inference takes care of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1060
  the most general typing of the given specification (the optional
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1061
  type constraint may refer to type-inference dummies ``@{text _}'' as
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1062
  usual).  The resulting type declaration needs to agree with that of
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1063
  the specification; overloading is \emph{not} supported here!
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1064
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1065
  The constant name may be omitted altogether, if neither type nor
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1066
  syntax declarations are given.  The canonical name of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1067
  definitional axiom for constant @{text c} will be @{text c_def},
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1068
  unless specified otherwise.  Also note that the given list of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1069
  specifications is processed in a strictly sequential manner, with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1070
  type-checking being performed independently.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1071
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1072
  An optional initial context of @{text "(structure)"} declarations
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1073
  admits use of indexed syntax, using the special symbol @{verbatim
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1074
  "\<index>"} (printed as ``@{text "\<index>"}'').  The latter concept is
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1075
  particularly useful with locales (see also \S\ref{sec:locale}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1076
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1077
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1078
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1079
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1080
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1081
section {* Axioms and theorems \label{sec:axms-thms} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1082
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1083
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1084
  \begin{matharray}{rcll}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1085
    @{command_def "axioms"} & : & \isartrans{theory}{theory} & (axiomatic!) \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1086
    @{command_def "lemmas"} & : & \isarkeep{local{\dsh}theory} \\
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1087
    @{command_def "theorems"} & : & \isarkeep{local{\dsh}theory} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1088
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1089
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1090
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1091
    'axioms' (axmdecl prop +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1092
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1093
    ('lemmas' | 'theorems') target? (thmdef? thmrefs + 'and')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1094
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1095
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1096
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1097
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1098
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1099
  \item @{command "axioms"}~@{text "a: \<phi>"} introduces arbitrary
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1100
  statements as axioms of the meta-logic.  In fact, axioms are
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1101
  ``axiomatic theorems'', and may be referred later just as any other
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1102
  theorem.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1103
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1104
  Axioms are usually only introduced when declaring new logical
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1105
  systems.  Everyday work is typically done the hard way, with proper
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1106
  definitions and proven theorems.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1107
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1108
  \item @{command "lemmas"}~@{text "a = b\<^sub>1 \<dots> b\<^sub>n"} retrieves and stores
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1109
  existing facts in the theory context, or the specified target
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1110
  context (see also \secref{sec:target}).  Typical applications would
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1111
  also involve attributes, to declare Simplifier rules, for example.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1112
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1113
  \item @{command "theorems"} is essentially the same as @{command
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1114
  "lemmas"}, but marks the result as a different kind of facts.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1115
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1116
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1117
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1118
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1119
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1120
section {* Oracles *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1121
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1122
text {* Oracles allow Isabelle to take advantage of external reasoners
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1123
  such as arithmetic decision procedures, model checkers, fast
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1124
  tautology checkers or computer algebra systems.  Invoked as an
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1125
  oracle, an external reasoner can create arbitrary Isabelle theorems.
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1126
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1127
  It is the responsibility of the user to ensure that the external
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1128
  reasoner is as trustworthy as the application requires.  Another
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1129
  typical source of errors is the linkup between Isabelle and the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1130
  external tool, not just its concrete implementation, but also the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1131
  required translation between two different logical environments.
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1132
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1133
  Isabelle merely guarantees well-formedness of the propositions being
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1134
  asserted, and records within the internal derivation object how
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1135
  presumed theorems depend on unproven suppositions.
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1136
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1137
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1138
    @{command_def "oracle"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1139
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1140
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1141
  \begin{rail}
28290
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28281
diff changeset
  1142
    'oracle' name '=' text
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1143
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1144
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1145
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1146
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1147
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1148
  \item @{command "oracle"}~@{text "name = text"} turns the given ML
28290
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28281
diff changeset
  1149
  expression @{text "text"} of type @{ML_text "'a -> cterm"} into an
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28281
diff changeset
  1150
  ML function of type @{ML_text "'a -> thm"}, which is bound to the
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1151
  global identifier @{ML_text name}.  This acts like an infinitary
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1152
  specification of axioms!  Invoking the oracle only works within the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1153
  scope of the resulting theory.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1154
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1155
  \end{description}
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1156
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1157
  See @{"file" "~~/src/FOL/ex/IffOracle.thy"} for a worked example of
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1158
  defining a new primitive rule as oracle, and turning it into a proof
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1159
  method.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1160
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1161
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1162
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1163
section {* Name spaces *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1164
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1165
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1166
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1167
    @{command_def "global"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1168
    @{command_def "local"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1169
    @{command_def "hide"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1170
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1171
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1172
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1173
    'hide' ('(open)')? name (nameref + )
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1174
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1175
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1176
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1177
  Isabelle organizes any kind of name declarations (of types,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1178
  constants, theorems etc.) by separate hierarchically structured name
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1179
  spaces.  Normally the user does not have to control the behavior of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1180
  name spaces by hand, yet the following commands provide some way to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1181
  do so.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1182
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1183
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1184
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1185
  \item @{command "global"} and @{command "local"} change the current
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1186
  name declaration mode.  Initially, theories start in @{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1187
  "local"} mode, causing all names to be automatically qualified by
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1188
  the theory name.  Changing this to @{command "global"} causes all
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1189
  names to be declared without the theory prefix, until @{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1190
  "local"} is declared again.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1191
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1192
  Note that global names are prone to get hidden accidently later,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1193
  when qualified names of the same base name are introduced.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1194
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1195
  \item @{command "hide"}~@{text "space names"} fully removes
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1196
  declarations from a given name space (which may be @{text "class"},
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1197
  @{text "type"}, @{text "const"}, or @{text "fact"}); with the @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1198
  "(open)"} option, only the base name is hidden.  Global
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1199
  (unqualified) names may never be hidden.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1200
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1201
  Note that hiding name space accesses has no impact on logical
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1202
  declarations --- they remain valid internally.  Entities that are no
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1203
  longer accessible to the user are printed with the special qualifier
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1204
  ``@{text "??"}'' prefixed to the full internal name.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1205
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1206
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1207
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1208
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1209
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1210
section {* Syntax and translations \label{sec:syn-trans} *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1211
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1212
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1213
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1214
    @{command_def "syntax"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1215
    @{command_def "no_syntax"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1216
    @{command_def "translations"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1217
    @{command_def "no_translations"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1218
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1219
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1220
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1221
    ('syntax' | 'no\_syntax') mode? (constdecl +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1222
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1223
    ('translations' | 'no\_translations') (transpat ('==' | '=>' | '<=' | rightleftharpoons | rightharpoonup | leftharpoondown) transpat +)
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1224
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1225
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1226
    mode: ('(' ( name | 'output' | name 'output' ) ')')
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1227
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1228
    transpat: ('(' nameref ')')? string
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1229
    ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1230
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1231
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1232
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1233
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1234
  \item @{command "syntax"}~@{text "(mode) decls"} is similar to
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1235
  @{command "consts"}~@{text decls}, except that the actual logical
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1236
  signature extension is omitted.  Thus the context free grammar of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1237
  Isabelle's inner syntax may be augmented in arbitrary ways,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1238
  independently of the logic.  The @{text mode} argument refers to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1239
  print mode that the grammar rules belong; unless the @{keyword_ref
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1240
  "output"} indicator is given, all productions are added both to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1241
  input and output grammar.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1242
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1243
  \item @{command "no_syntax"}~@{text "(mode) decls"} removes grammar
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1244
  declarations (and translations) resulting from @{text decls}, which
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1245
  are interpreted in the same manner as for @{command "syntax"} above.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1246
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1247
  \item @{command "translations"}~@{text rules} specifies syntactic
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1248
  translation rules (i.e.\ macros): parse~/ print rules (@{text "\<rightleftharpoons>"}),
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1249
  parse rules (@{text "\<rightharpoonup>"}), or print rules (@{text "\<leftharpoondown>"}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1250
  Translation patterns may be prefixed by the syntactic category to be
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1251
  used for parsing; the default is @{text logic}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1252
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1253
  \item @{command "no_translations"}~@{text rules} removes syntactic
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1254
  translation rules, which are interpreted in the same manner as for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1255
  @{command "translations"} above.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1256
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1257
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1258
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1259
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1260
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1261
section {* Syntax translation functions *}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1262
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1263
text {*
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1264
  \begin{matharray}{rcl}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1265
    @{command_def "parse_ast_translation"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1266
    @{command_def "parse_translation"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1267
    @{command_def "print_translation"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1268
    @{command_def "typed_print_translation"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1269
    @{command_def "print_ast_translation"} & : & \isartrans{theory}{theory} \\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1270
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1271
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1272
  \begin{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1273
  ( 'parse\_ast\_translation' | 'parse\_translation' | 'print\_translation' |
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1274
    'typed\_print\_translation' | 'print\_ast\_translation' ) ('(advanced)')? text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1275
  ;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1276
  \end{rail}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1277
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1278
  Syntax translation functions written in ML admit almost arbitrary
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1279
  manipulations of Isabelle's inner syntax.  Any of the above commands
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1280
  have a single \railqtok{text} argument that refers to an ML
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1281
  expression of appropriate type, which are as follows by default:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1282
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1283
%FIXME proper antiquotations
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1284
\begin{ttbox}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1285
val parse_ast_translation   : (string * (ast list -> ast)) list
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1286
val parse_translation       : (string * (term list -> term)) list
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1287
val print_translation       : (string * (term list -> term)) list
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1288
val typed_print_translation :
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1289
  (string * (bool -> typ -> term list -> term)) list
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1290
val print_ast_translation   : (string * (ast list -> ast)) list
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1291
\end{ttbox}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1292
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1293
  If the @{text "(advanced)"} option is given, the corresponding
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1294
  translation functions may depend on the current theory or proof
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1295
  context.  This allows to implement advanced syntax mechanisms, as
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1296
  translations functions may refer to specific theory declarations or
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1297
  auxiliary proof data.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1298
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1299
  See also \cite[\S8]{isabelle-ref} for more information on the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1300
  general concept of syntax transformations in Isabelle.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1301
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1302
%FIXME proper antiquotations
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1303
\begin{ttbox}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1304
val parse_ast_translation:
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1305
  (string * (Proof.context -> ast list -> ast)) list
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1306
val parse_translation:
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1307
  (string * (Proof.context -> term list -> term)) list
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1308
val print_translation:
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1309
  (string * (Proof.context -> term list -> term)) list
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1310
val typed_print_translation:
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1311
  (string * (Proof.context -> bool -> typ -> term list -> term)) list
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1312
val print_ast_translation:
27046
51c2635dd89c updated ML types for advanced translations;
wenzelm
parents: 27040
diff changeset
  1313
  (string * (Proof.context -> ast list -> ast)) list
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1314
\end{ttbox}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1315
*}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1316
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
  1317
end