src/Doc/Isar_Ref/Spec.thy
author wenzelm
Mon, 12 Oct 2015 22:03:24 +0200
changeset 61421 e0825405d398
parent 61420 ee42cba50933
child 61439 2bf52eec4e8a
permissions -rw-r--r--
more symbols;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     1
theory Spec
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
     2
imports Base Main "~~/src/Tools/Permanent_Interpretation"
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     3
begin
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     4
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
     5
chapter \<open>Specifications\<close>
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
     6
59781
wenzelm
parents: 59422
diff changeset
     7
text \<open>The Isabelle/Isar theory format integrates specifications and proofs,
wenzelm
parents: 59422
diff changeset
     8
  with support for interactive development by continuous document editing.
wenzelm
parents: 59422
diff changeset
     9
  There is a separate document preparation system (see
wenzelm
parents: 59422
diff changeset
    10
  \chref{ch:document-prep}), for typesetting formal developments together
wenzelm
parents: 59422
diff changeset
    11
  with informal text. The resulting hyper-linked PDF documents can be used
wenzelm
parents: 59422
diff changeset
    12
  both for WWW presentation and printed copies.
29745
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    13
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    14
  The Isar proof language (see \chref{ch:proofs}) is embedded into the
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    15
  theory language as a proper sub-language.  Proof mode is entered by
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    16
  stating some @{command theorem} or @{command lemma} at the theory
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    17
  level, and left again with the final conclusion (e.g.\ via @{command
59781
wenzelm
parents: 59422
diff changeset
    18
  qed}).
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
    19
\<close>
29745
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    20
fe221f1d8976 added introduction;
wenzelm
parents: 29706
diff changeset
    21
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
    22
section \<open>Defining theories \label{sec:begin-thy}\<close>
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    23
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
    24
text \<open>
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    25
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
    26
    @{command_def "theory"} & : & @{text "toplevel \<rightarrow> theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
    27
    @{command_def (global) "end"} & : & @{text "theory \<rightarrow> toplevel"} \\
60093
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
    28
    @{command_def "thy_deps"}@{text "\<^sup>*"} & : & @{text "theory \<rightarrow>"} \\
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    29
  \end{matharray}
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    30
59781
wenzelm
parents: 59422
diff changeset
    31
  Isabelle/Isar theories are defined via theory files, which consist of an
wenzelm
parents: 59422
diff changeset
    32
  outermost sequence of definition--statement--proof elements. Some
wenzelm
parents: 59422
diff changeset
    33
  definitions are self-sufficient (e.g.\ @{command fun} in Isabelle/HOL),
wenzelm
parents: 59422
diff changeset
    34
  with foundational proofs performed internally. Other definitions require
wenzelm
parents: 59422
diff changeset
    35
  an explicit proof as justification (e.g.\ @{command function} and
wenzelm
parents: 59422
diff changeset
    36
  @{command termination} in Isabelle/HOL). Plain statements like @{command
wenzelm
parents: 59422
diff changeset
    37
  theorem} or @{command lemma} are merely a special case of that, defining a
wenzelm
parents: 59422
diff changeset
    38
  theorem from a given proposition and its proof.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    39
59781
wenzelm
parents: 59422
diff changeset
    40
  The theory body may be sub-structured by means of \emph{local theory
wenzelm
parents: 59422
diff changeset
    41
  targets}, such as @{command "locale"} and @{command "class"}. It is also
wenzelm
parents: 59422
diff changeset
    42
  possible to use @{command context}~@{keyword "begin"}~\dots~@{command end}
wenzelm
parents: 59422
diff changeset
    43
  blocks to delimited a local theory context: a \emph{named context} to
wenzelm
parents: 59422
diff changeset
    44
  augment a locale or class specification, or an \emph{unnamed context} to
wenzelm
parents: 59422
diff changeset
    45
  refer to local parameters and assumptions that are discharged later. See
wenzelm
parents: 59422
diff changeset
    46
  \secref{sec:target} for more details.
28745
146d570e12b5 reworked "Defining Theories";
wenzelm
parents: 28728
diff changeset
    47
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
    48
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
    49
  A theory is commenced by the @{command "theory"} command, which
59781
wenzelm
parents: 59422
diff changeset
    50
  indicates imports of previous theories, according to an acyclic
wenzelm
parents: 59422
diff changeset
    51
  foundational order. Before the initial @{command "theory"} command, there
wenzelm
parents: 59422
diff changeset
    52
  may be optional document header material (like @{command section} or
wenzelm
parents: 59422
diff changeset
    53
  @{command text}, see \secref{sec:markup}). The document header is outside
wenzelm
parents: 59422
diff changeset
    54
  of the formal theory context, though.
wenzelm
parents: 59422
diff changeset
    55
wenzelm
parents: 59422
diff changeset
    56
  A theory is concluded by a final @{command (global) "end"} command, one
wenzelm
parents: 59422
diff changeset
    57
  that does not belong to a local theory target. No further commands may
wenzelm
parents: 59422
diff changeset
    58
  follow such a global @{command (global) "end"}.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    59
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
    60
  @{rail \<open>
59781
wenzelm
parents: 59422
diff changeset
    61
    @@{command theory} @{syntax name} imports? keywords? \<newline> @'begin'
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    62
    ;
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    63
    imports: @'imports' (@{syntax name} +)
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    64
    ;
50128
599c935aac82 alternative completion for outer syntax keywords;
wenzelm
parents: 49243
diff changeset
    65
    keywords: @'keywords' (keyword_decls + @'and')
599c935aac82 alternative completion for outer syntax keywords;
wenzelm
parents: 49243
diff changeset
    66
    ;
599c935aac82 alternative completion for outer syntax keywords;
wenzelm
parents: 49243
diff changeset
    67
    keyword_decls: (@{syntax string} +)
599c935aac82 alternative completion for outer syntax keywords;
wenzelm
parents: 49243
diff changeset
    68
      ('::' @{syntax name} @{syntax tags})? ('==' @{syntax name})?
60093
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
    69
    ;
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
    70
    @@{command thy_deps} (thy_bounds thy_bounds?)?
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
    71
    ;
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
    72
    thy_bounds: @{syntax name} | '(' (@{syntax name} + @'|') ')'
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
    73
  \<close>}
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    74
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    75
  \begin{description}
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
    76
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
    77
  \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
    78
  starts a new theory @{text A} based on the merge of existing
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    79
  theories @{text "B\<^sub>1 \<dots> B\<^sub>n"}.  Due to the possibility to import more
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    80
  than one ancestor, the resulting theory structure of an Isabelle
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    81
  session forms a directed acyclic graph (DAG).  Isabelle takes care
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    82
  that sources contributing to the development graph are always
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    83
  up-to-date: changed files are automatically rechecked whenever a
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    84
  theory header specification is processed.
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    85
59781
wenzelm
parents: 59422
diff changeset
    86
  Empty imports are only allowed in the bootstrap process of the special
wenzelm
parents: 59422
diff changeset
    87
  theory @{theory Pure}, which is the start of any other formal development
wenzelm
parents: 59422
diff changeset
    88
  based on Isabelle. Regular user theories usually refer to some more
wenzelm
parents: 59422
diff changeset
    89
  complex entry point, such as theory @{theory Main} in Isabelle/HOL.
wenzelm
parents: 59422
diff changeset
    90
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    91
  The optional @{keyword_def "keywords"} specification declares outer
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    92
  syntax (\chref{ch:outer-syntax}) that is introduced in this theory
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    93
  later on (rare in end-user applications).  Both minor keywords and
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    94
  major keywords of the Isar command language need to be specified, in
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    95
  order to make parsing of proof documents work properly.  Command
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    96
  keywords need to be classified according to their structural role in
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    97
  the formal text.  Examples may be seen in Isabelle/HOL sources
58724
e5f809f52f26 more antiquotations;
wenzelm
parents: 58619
diff changeset
    98
  itself, such as @{keyword "keywords"}~@{verbatim \<open>"typedef"\<close>}
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
    99
  @{text ":: thy_goal"} or @{keyword "keywords"}~@{verbatim
58724
e5f809f52f26 more antiquotations;
wenzelm
parents: 58619
diff changeset
   100
  \<open>"datatype"\<close>} @{text ":: thy_decl"} for theory-level declarations
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   101
  with and without proof, respectively.  Additional @{syntax tags}
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   102
  provide defaults for document preparation (\secref{sec:tags}).
50128
599c935aac82 alternative completion for outer syntax keywords;
wenzelm
parents: 49243
diff changeset
   103
59781
wenzelm
parents: 59422
diff changeset
   104
  It is possible to specify an alternative completion via @{verbatim
wenzelm
parents: 59422
diff changeset
   105
  "=="}~@{text "text"}, while the default is the corresponding keyword name.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
   106
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   107
  \item @{command (global) "end"} concludes the current theory
47114
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   108
  definition.  Note that some other commands, e.g.\ local theory
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   109
  targets @{command locale} or @{command class} may involve a
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   110
  @{keyword "begin"} that needs to be matched by @{command (local)
7c9e31ffcd9e updated theory header syntax and related details;
wenzelm
parents: 46999
diff changeset
   111
  "end"}, according to the usual rules for nested blocks.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   112
60093
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   113
  \item @{command thy_deps} visualizes the theory hierarchy as a directed
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   114
  acyclic graph. By default, all imported theories are shown, taking the
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   115
  base session as a starting point. Alternatively, it is possibly to
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   116
  restrict the full theory graph by giving bounds, analogously to
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   117
  @{command_ref class_deps}.
c48d536231fe clarified thy_deps;
wenzelm
parents: 60091
diff changeset
   118
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   119
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   120
\<close>
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
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   123
section \<open>Local theory targets \label{sec:target}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   124
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   125
text \<open>
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   126
  \begin{matharray}{rcll}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   127
    @{command_def "context"} & : & @{text "theory \<rightarrow> local_theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   128
    @{command_def (local) "end"} & : & @{text "local_theory \<rightarrow> theory"} \\
59926
003dbac78546 some explanation of 'private';
wenzelm
parents: 59917
diff changeset
   129
    @{keyword_def "private"} \\
59990
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   130
    @{keyword_def "qualified"} \\
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   131
  \end{matharray}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   132
59781
wenzelm
parents: 59422
diff changeset
   133
  A local theory target is a specification context that is managed
wenzelm
parents: 59422
diff changeset
   134
  separately within the enclosing theory. Contexts may introduce parameters
wenzelm
parents: 59422
diff changeset
   135
  (fixed variables) and assumptions (hypotheses). Definitions and theorems
47482
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   136
  depending on the context may be added incrementally later on.
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   137
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   138
  \emph{Named contexts} refer to locales (cf.\ \secref{sec:locale}) or
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   139
  type classes (cf.\ \secref{sec:class}); the name ``@{text "-"}''
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   140
  signifies the global theory context.
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   141
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   142
  \emph{Unnamed contexts} may introduce additional parameters and
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   143
  assumptions, and results produced in the context are generalized
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   144
  accordingly.  Such auxiliary contexts may be nested within other
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   145
  targets, like @{command "locale"}, @{command "class"}, @{command
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   146
  "instantiation"}, @{command "overloading"}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   147
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   148
  @{rail \<open>
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   149
    @@{command context} @{syntax nameref} @'begin'
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   150
    ;
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   151
    @@{command context} @{syntax_ref "includes"}? (@{syntax context_elem} * ) @'begin'
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   152
    ;
46999
1c3c185bab4e more precise syntax;
wenzelm
parents: 45600
diff changeset
   153
    @{syntax_def target}: '(' @'in' @{syntax nameref} ')'
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   154
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   155
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   156
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   157
  
47482
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   158
  \item @{command "context"}~@{text "c \<BEGIN>"} opens a named
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   159
  context, by recommencing an existing locale or class @{text c}.
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   160
  Note that locale and class definitions allow to include the
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   161
  @{keyword "begin"} keyword as well, in order to continue the local
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   162
  theory immediately after the initial specification.
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   163
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   164
  \item @{command "context"}~@{text "bundles elements \<BEGIN>"} opens
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   165
  an unnamed context, by extending the enclosing global or local
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   166
  theory target by the given declaration bundles (\secref{sec:bundle})
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   167
  and context elements (@{text "\<FIXES>"}, @{text "\<ASSUMES>"}
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   168
  etc.).  This means any results stemming from definitions and proofs
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   169
  in the extended context will be exported into the enclosing target
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   170
  by lifting over extra parameters and premises.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   171
  
47482
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   172
  \item @{command (local) "end"} concludes the current local theory,
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   173
  according to the nesting of contexts.  Note that a global @{command
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   174
  (global) "end"} has a different meaning: it concludes the theory
a83b25e5bad3 some coverage of unnamed contexts, which can be nested within other targets;
wenzelm
parents: 47114
diff changeset
   175
  itself (\secref{sec:begin-thy}).
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   176
  
59990
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   177
  \item @{keyword "private"} or @{keyword "qualified"} may be given as
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   178
  modifiers before any local theory command. This restricts name space
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   179
  accesses to the local scope, as determined by the enclosing @{command
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59926
diff changeset
   180
  "context"}~@{keyword "begin"}~\dots~@{command "end"} block. Outside its
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59926
diff changeset
   181
  scope, a @{keyword "private"} name is inaccessible, and a @{keyword
60297
wenzelm
parents: 60093
diff changeset
   182
  "qualified"} name is only accessible with some qualification.
59939
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59926
diff changeset
   183
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59926
diff changeset
   184
  Neither a global @{command theory} nor a @{command locale} target provides
7d46aa03696e support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents: 59926
diff changeset
   185
  a local scope by itself: an extra unnamed context is required to use
59990
a81dc82ecba3 clarified keyword 'qualified' in accordance to a similar keyword from Haskell (despite unrelated Binding.qualified in Isabelle/ML);
wenzelm
parents: 59939
diff changeset
   186
  @{keyword "private"} or @{keyword "qualified"} here.
59926
003dbac78546 some explanation of 'private';
wenzelm
parents: 59917
diff changeset
   187
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   188
  \item @{text "("}@{keyword_def "in"}~@{text "c)"} given after any local
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   189
  theory command specifies an immediate target, e.g.\ ``@{command
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   190
  "definition"}~@{text "(\<IN> c)"}'' or ``@{command "theorem"}~@{text
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   191
  "(\<IN> c)"}''. This works both in a local or global theory context; the
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   192
  current target context will be suspended for this command only. Note that
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   193
  ``@{text "(\<IN> -)"}'' will always produce a global result independently
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   194
  of the current target context.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   195
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   196
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   197
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   198
  Any specification element that operates on @{text local_theory} according
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   199
  to this manual implicitly allows the above target syntax @{text
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   200
  "("}@{keyword "in"}~@{text "c)"}, but individual syntax diagrams omit that
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   201
  aspect for clarity.
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   202
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   203
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   204
  The exact meaning of results produced within a local theory
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   205
  context depends on the underlying target infrastructure (locale, type
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   206
  class etc.). The general idea is as follows, considering a context named
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   207
  @{text c} with parameter @{text x} and assumption @{text "A[x]"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   208
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   209
  Definitions are exported by introducing a global version with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   210
  additional arguments; a syntactic abbreviation links the long form
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   211
  with the abstract version of the target context.  For example,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   212
  @{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
   213
  level (for arbitrary @{text "?x"}), together with a local
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   214
  abbreviation @{text "c \<equiv> c.a x"} in the target context (for the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   215
  fixed parameter @{text x}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   216
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   217
  Theorems are exported by discharging the assumptions and
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   218
  generalizing the parameters of the context.  For example, @{text "a:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   219
  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
   220
  @{text "?x"}.
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   221
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   222
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   223
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   224
section \<open>Bundled declarations \label{sec:bundle}\<close>
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   225
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   226
text \<open>
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   227
  \begin{matharray}{rcl}
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   228
    @{command_def "bundle"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   229
    @{command_def "print_bundles"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow> "} \\
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   230
    @{command_def "include"} & : & @{text "proof(state) \<rightarrow> proof(state)"} \\
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   231
    @{command_def "including"} & : & @{text "proof(prove) \<rightarrow> proof(prove)"} \\
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   232
    @{keyword_def "includes"} & : & syntax \\
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   233
  \end{matharray}
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   234
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   235
  The outer syntax of fact expressions (\secref{sec:syn-att}) involves
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   236
  theorems and attributes, which are evaluated in the context and
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   237
  applied to it.  Attributes may declare theorems to the context, as
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   238
  in @{text "this_rule [intro] that_rule [elim]"} for example.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   239
  Configuration options (\secref{sec:config}) are special declaration
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   240
  attributes that operate on the context without a theorem, as in
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   241
  @{text "[[show_types = false]]"} for example.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   242
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   243
  Expressions of this form may be defined as \emph{bundled
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   244
  declarations} in the context, and included in other situations later
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   245
  on.  Including declaration bundles augments a local context casually
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   246
  without logical dependencies, which is in contrast to locales and
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   247
  locale interpretation (\secref{sec:locale}).
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   248
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   249
  @{rail \<open>
59785
4e6ab5831cc0 clarified syntax category "fixes";
wenzelm
parents: 59783
diff changeset
   250
    @@{command bundle} @{syntax name} '=' @{syntax thmrefs} @{syntax for_fixes}
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   251
    ;
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   252
    @@{command print_bundles} ('!'?)
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   253
    ;
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   254
    (@@{command include} | @@{command including}) (@{syntax nameref}+)
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   255
    ;
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   256
    @{syntax_def "includes"}: @'includes' (@{syntax nameref}+)
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   257
  \<close>}
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   258
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   259
  \begin{description}
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   260
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   261
  \item @{command bundle}~@{text "b = decls"} defines a bundle of
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   262
  declarations in the current context.  The RHS is similar to the one
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   263
  of the @{command declare} command.  Bundles defined in local theory
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   264
  targets are subject to transformations via morphisms, when moved
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   265
  into different application contexts; this works analogously to any
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   266
  other local theory specification.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   267
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   268
  \item @{command print_bundles} prints the named bundles that are available
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   269
  in the current context; the ``@{text "!"}'' option indicates extra
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   270
  verbosity.
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   271
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   272
  \item @{command include}~@{text "b\<^sub>1 \<dots> b\<^sub>n"} includes the declarations
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   273
  from the given bundles into the current proof body context.  This is
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   274
  analogous to @{command "note"} (\secref{sec:proof-facts}) with the
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   275
  expanded bundles.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   276
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   277
  \item @{command including} is similar to @{command include}, but
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   278
  works in proof refinement (backward mode).  This is analogous to
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   279
  @{command "using"} (\secref{sec:proof-facts}) with the expanded
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   280
  bundles.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   281
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   282
  \item @{keyword "includes"}~@{text "b\<^sub>1 \<dots> b\<^sub>n"} is similar to
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   283
  @{command include}, but works in situations where a specification
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   284
  context is constructed, notably for @{command context} and long
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   285
  statements of @{command theorem} etc.
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   286
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   287
  \end{description}
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   288
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   289
  Here is an artificial example of bundling various configuration
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   290
  options:\<close>
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   291
59905
678c9e625782 misc tuning -- keep name space more clean;
wenzelm
parents: 59901
diff changeset
   292
(*<*)experiment begin(*>*)
53536
69c943125fd3 do not expose internal flags to attribute name space;
wenzelm
parents: 53370
diff changeset
   293
bundle trace = [[simp_trace, linarith_trace, metis_trace, smt_trace]]
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   294
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   295
lemma "x = x"
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   296
  including trace by metis
59905
678c9e625782 misc tuning -- keep name space more clean;
wenzelm
parents: 59901
diff changeset
   297
(*<*)end(*>*)
47484
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   298
e94cc23d434a some coverage of bundled declarations;
wenzelm
parents: 47483
diff changeset
   299
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   300
section \<open>Term definitions \label{sec:term-definitions}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   301
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   302
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   303
  \begin{matharray}{rcll}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   304
    @{command_def "definition"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   305
    @{attribute_def "defn"} & : & @{text attribute} \\
51585
fcd5af4aac2b added 'print_defn_rules' command;
wenzelm
parents: 51565
diff changeset
   306
    @{command_def "print_defn_rules"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow> "} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   307
    @{command_def "abbreviation"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   308
    @{command_def "print_abbrevs"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow> "} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   309
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   310
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   311
  Term definitions may either happen within the logic (as equational axioms
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   312
  of a certain form, see also see \secref{sec:consts}), or outside of it as
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   313
  rewrite system on abstract syntax. The second form is called
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   314
  ``abbreviation''.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   315
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   316
  @{rail \<open>
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   317
    @@{command definition} (decl @'where')? @{syntax thmdecl}? @{syntax prop}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   318
    ;
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   319
    @@{command abbreviation} @{syntax mode}? \<newline>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   320
      (decl @'where')? @{syntax prop}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   321
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   322
    decl: @{syntax name} ('::' @{syntax type})? @{syntax mixfix}?
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   323
    ;
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   324
    @@{command print_abbrevs} ('!'?)
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   325
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   326
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   327
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   328
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   329
  \item @{command "definition"}~@{text "c \<WHERE> eq"} produces an
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   330
  internal definition @{text "c \<equiv> t"} according to the specification
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   331
  given as @{text eq}, which is then turned into a proven fact.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   332
  given proposition may deviate from internal meta-level equality
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   333
  according to the rewrite rules declared as @{attribute defn} by the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   334
  object-logic.  This usually covers object-level equality @{text "x =
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   335
  y"} and equivalence @{text "A \<leftrightarrow> B"}.  End-users normally need not
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   336
  change the @{attribute defn} setup.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   337
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   338
  Definitions may be presented with explicit arguments on the LHS, as
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   339
  well as additional conditions, e.g.\ @{text "f x y = t"} instead of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   340
  @{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
   341
  unrestricted @{text "g \<equiv> \<lambda>x y. u"}.
51585
fcd5af4aac2b added 'print_defn_rules' command;
wenzelm
parents: 51565
diff changeset
   342
fcd5af4aac2b added 'print_defn_rules' command;
wenzelm
parents: 51565
diff changeset
   343
  \item @{command "print_defn_rules"} prints the definitional rewrite rules
fcd5af4aac2b added 'print_defn_rules' command;
wenzelm
parents: 51565
diff changeset
   344
  declared via @{attribute defn} in the current context.
fcd5af4aac2b added 'print_defn_rules' command;
wenzelm
parents: 51565
diff changeset
   345
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   346
  \item @{command "abbreviation"}~@{text "c \<WHERE> eq"} introduces a
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   347
  syntactic constant which is associated with a certain term according
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   348
  to the meta-level equality @{text eq}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   349
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   350
  Abbreviations participate in the usual type-inference process, but
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   351
  are expanded before the logic ever sees them.  Pretty printing of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   352
  terms involves higher-order rewriting with rules stemming from
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   353
  reverted abbreviations.  This needs some care to avoid overlapping
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   354
  or looping syntactic replacements!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   355
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   356
  The optional @{text mode} specification restricts output to a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   357
  particular print mode; using ``@{text input}'' here achieves the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   358
  effect of one-way abbreviations.  The mode may also include an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   359
  ``@{keyword "output"}'' qualifier that affects the concrete syntax
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   360
  declared for abbreviations, cf.\ @{command "syntax"} in
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   361
  \secref{sec:syn-trans}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   362
  
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   363
  \item @{command "print_abbrevs"} prints all constant abbreviations of the
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   364
  current context; the ``@{text "!"}'' option indicates extra verbosity.
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
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   367
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   368
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   369
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   370
section \<open>Axiomatizations \label{sec:axiomatizations}\<close>
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   371
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   372
text \<open>
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   373
  \begin{matharray}{rcll}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   374
    @{command_def "axiomatization"} & : & @{text "theory \<rightarrow> theory"} & (axiomatic!) \\
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   375
  \end{matharray}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   376
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   377
  @{rail \<open>
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   378
    @@{command axiomatization} @{syntax "fixes"}? (@'where' specs)?
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   379
    ;
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   380
    specs: (@{syntax thmdecl}? @{syntax props} + @'and')
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   381
  \<close>}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   382
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   383
  \begin{description}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   384
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   385
  \item @{command "axiomatization"}~@{text "c\<^sub>1 \<dots> c\<^sub>m \<WHERE> \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   386
  introduces several constants simultaneously and states axiomatic
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   387
  properties for these. The constants are marked as being specified once and
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   388
  for all, which prevents additional specifications for the same constants
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   389
  later on, but it is always possible do emit axiomatizations without
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   390
  referring to particular constants. Note that lack of precise dependency
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   391
  tracking of axiomatizations may disrupt the well-formedness of an
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   392
  otherwise definitional theory.
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   393
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   394
  Axiomatization is restricted to a global theory context: support for local
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   395
  theory targets \secref{sec:target} would introduce an extra dimension of
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   396
  uncertainty what the written specifications really are, and make it
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   397
  infeasible to argue why they are correct.
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   398
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   399
  Axiomatic specifications are required when declaring a new logical system
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   400
  within Isabelle/Pure, but in an application environment like Isabelle/HOL
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   401
  the user normally stays within definitional mechanisms provided by the
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   402
  logic and its libraries.
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   403
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   404
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   405
\<close>
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   406
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   407
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   408
section \<open>Generic declarations\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   409
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   410
text \<open>
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   411
  \begin{matharray}{rcl}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   412
    @{command_def "declaration"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   413
    @{command_def "syntax_declaration"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   414
    @{command_def "declare"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   415
  \end{matharray}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   416
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   417
  Arbitrary operations on the background context may be wrapped-up as
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   418
  generic declaration elements.  Since the underlying concept of local
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   419
  theories may be subject to later re-interpretation, there is an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   420
  additional dependency on a morphism that tells the difference of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   421
  original declaration context wrt.\ the application context
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   422
  encountered later on.  A fact declaration is an important special
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   423
  case: it consists of a theorem which is applied to the context by
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   424
  means of an attribute.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   425
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   426
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   427
    (@@{command declaration} | @@{command syntax_declaration})
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   428
      ('(' @'pervasive' ')')? \<newline> @{syntax text}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   429
    ;
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   430
    @@{command declare} (@{syntax thmrefs} + @'and')
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   431
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   432
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   433
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   434
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   435
  \item @{command "declaration"}~@{text d} adds the declaration
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   436
  function @{text d} of ML type @{ML_type declaration}, to the current
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   437
  local theory under construction.  In later application contexts, the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   438
  function is transformed according to the morphisms being involved in
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   439
  the interpretation hierarchy.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   440
33516
0855a09bc5cf added "declaration (pervasive)";
wenzelm
parents: 31914
diff changeset
   441
  If the @{text "(pervasive)"} option is given, the corresponding
0855a09bc5cf added "declaration (pervasive)";
wenzelm
parents: 31914
diff changeset
   442
  declaration is applied to all possible contexts involved, including
0855a09bc5cf added "declaration (pervasive)";
wenzelm
parents: 31914
diff changeset
   443
  the global background theory.
0855a09bc5cf added "declaration (pervasive)";
wenzelm
parents: 31914
diff changeset
   444
40784
177e8cea3e09 added 'syntax_declaration' command;
wenzelm
parents: 40256
diff changeset
   445
  \item @{command "syntax_declaration"} is similar to @{command
177e8cea3e09 added 'syntax_declaration' command;
wenzelm
parents: 40256
diff changeset
   446
  "declaration"}, but is meant to affect only ``syntactic'' tools by
177e8cea3e09 added 'syntax_declaration' command;
wenzelm
parents: 40256
diff changeset
   447
  convention (such as notation and type-checking information).
177e8cea3e09 added 'syntax_declaration' command;
wenzelm
parents: 40256
diff changeset
   448
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   449
  \item @{command "declare"}~@{text thms} declares theorems to the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   450
  current local theory context.  No theorem binding is involved here,
61337
4645502c3c64 fewer aliases for toplevel theorem statements;
wenzelm
parents: 60297
diff changeset
   451
  unlike @{command "lemmas"} (cf.\ \secref{sec:theorems}), so
4645502c3c64 fewer aliases for toplevel theorem statements;
wenzelm
parents: 60297
diff changeset
   452
  @{command "declare"} only has the effect of applying attributes as
4645502c3c64 fewer aliases for toplevel theorem statements;
wenzelm
parents: 60297
diff changeset
   453
  included in the theorem specification.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   454
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   455
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   456
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   457
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   458
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   459
section \<open>Locales \label{sec:locale}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   460
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   461
text \<open>
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   462
  A locale is a functor that maps parameters (including implicit type
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   463
  parameters) and a specification to a list of declarations.  The
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   464
  syntax of locales is modeled after the Isar proof context commands
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   465
  (cf.\ \secref{sec:proof-context}).
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   466
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   467
  Locale hierarchies are supported by maintaining a graph of
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   468
  dependencies between locale instances in the global theory.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   469
  Dependencies may be introduced through import (where a locale is
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   470
  defined as sublocale of the imported instances) or by proving that
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   471
  an existing locale is a sublocale of one or several locale
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   472
  instances.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   473
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   474
  A locale may be opened with the purpose of appending to its list of
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   475
  declarations (cf.\ \secref{sec:target}).  When opening a locale
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   476
  declarations from all dependencies are collected and are presented
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   477
  as a local theory.  In this process, which is called \emph{roundup},
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   478
  redundant locale instances are omitted.  A locale instance is
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   479
  redundant if it is subsumed by an instance encountered earlier.  A
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   480
  more detailed description of this process is available elsewhere
58552
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
   481
  @{cite Ballarin2014}.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   482
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   483
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   484
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   485
subsection \<open>Locale expressions \label{sec:locale-expr}\<close>
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   486
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   487
text \<open>
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   488
  A \emph{locale expression} denotes a context composed of instances
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   489
  of existing locales.  The context consists of the declaration
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   490
  elements from the locale instances.  Redundant locale instances are
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   491
  omitted according to roundup.
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   492
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   493
  @{rail \<open>
59785
4e6ab5831cc0 clarified syntax category "fixes";
wenzelm
parents: 59783
diff changeset
   494
    @{syntax_def locale_expr}: (instance + '+') @{syntax for_fixes}
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   495
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   496
    instance: (qualifier ':')? @{syntax nameref} (pos_insts | named_insts)
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   497
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   498
    qualifier: @{syntax name} ('?' | '!')?
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   499
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   500
    pos_insts: ('_' | @{syntax term})*
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   501
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   502
    named_insts: @'where' (@{syntax name} '=' @{syntax term} + @'and')
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   503
  \<close>}
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   504
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   505
  A locale instance consists of a reference to a locale and either
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   506
  positional or named parameter instantiations.  Identical
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   507
  instantiations (that is, those that instantiate a parameter by itself)
40256
eb5412b77ac4 eliminated obsolete \_ escape;
wenzelm
parents: 40255
diff changeset
   508
  may be omitted.  The notation `@{text "_"}' enables to omit the
eb5412b77ac4 eliminated obsolete \_ escape;
wenzelm
parents: 40255
diff changeset
   509
  instantiation for a parameter inside a positional instantiation.
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   510
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   511
  Terms in instantiations are from the context the locale expressions
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   512
  is declared in.  Local names may be added to this context with the
48824
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   513
  optional @{keyword "for"} clause.  This is useful for shadowing names
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   514
  bound in outer contexts, and for declaring syntax.  In addition,
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   515
  syntax declarations from one instance are effective when parsing
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   516
  subsequent instances of the same expression.
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   517
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   518
  Instances have an optional qualifier which applies to names in
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   519
  declarations.  Names include local definitions and theorem names.
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   520
  If present, the qualifier itself is either optional
61414
0d2d399c90a4 more antiquotations;
wenzelm
parents: 61337
diff changeset
   521
  (``@{verbatim "?"}''), which means that it may be omitted on input of the
0d2d399c90a4 more antiquotations;
wenzelm
parents: 61337
diff changeset
   522
  qualified name, or mandatory (``@{verbatim "!"}'').  If neither
0d2d399c90a4 more antiquotations;
wenzelm
parents: 61337
diff changeset
   523
  ``@{verbatim "?"}'' nor ``@{verbatim "!"}'' are present, the command's default
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   524
  is used.  For @{command "interpretation"} and @{command "interpret"}
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   525
  the default is ``mandatory'', for @{command "locale"} and @{command
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   526
  "sublocale"} the default is ``optional''.  Qualifiers play no role
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   527
  in determining whether one locale instance subsumes another.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   528
\<close>
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   529
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   530
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   531
subsection \<open>Locale declarations\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   532
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   533
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   534
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   535
    @{command_def "locale"} & : & @{text "theory \<rightarrow> local_theory"} \\
59901
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   536
    @{command_def "experiment"} & : & @{text "theory \<rightarrow> local_theory"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   537
    @{command_def "print_locale"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   538
    @{command_def "print_locales"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
50716
e04c44dc11fc document 'locale_deps';
wenzelm
parents: 50128
diff changeset
   539
    @{command_def "locale_deps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   540
    @{method_def intro_locales} & : & @{text method} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   541
    @{method_def unfold_locales} & : & @{text method} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   542
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   543
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   544
  \indexisarelem{fixes}\indexisarelem{constrains}\indexisarelem{assumes}
28787
8ea7403147c5 removed "includes" element (lost update?);
wenzelm
parents: 28768
diff changeset
   545
  \indexisarelem{defines}\indexisarelem{notes}
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   546
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   547
    @@{command locale} @{syntax name} ('=' @{syntax locale})? @'begin'?
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   548
    ;
59901
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   549
    @@{command experiment} (@{syntax context_elem}*) @'begin'
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   550
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   551
    @@{command print_locale} '!'? @{syntax nameref}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   552
    ;
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   553
    @@{command print_locales} ('!'?)
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   554
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   555
    @{syntax_def locale}: @{syntax context_elem}+ |
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   556
      @{syntax locale_expr} ('+' (@{syntax context_elem}+))?
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   557
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   558
    @{syntax_def context_elem}:
59785
4e6ab5831cc0 clarified syntax category "fixes";
wenzelm
parents: 59783
diff changeset
   559
      @'fixes' @{syntax "fixes"} |
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   560
      @'constrains' (@{syntax name} '::' @{syntax type} + @'and') |
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   561
      @'assumes' (@{syntax props} + @'and') |
42705
528a2ba8fa74 tuned some syntax names;
wenzelm
parents: 42704
diff changeset
   562
      @'defines' (@{syntax thmdecl}? @{syntax prop} @{syntax prop_pat}? + @'and') |
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   563
      @'notes' (@{syntax thmdef}? @{syntax thmrefs} + @'and')
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   564
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   565
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   566
  \begin{description}
27040
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
  \item @{command "locale"}~@{text "loc = import + body"} defines a
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   569
  new locale @{text loc} as a context consisting of a certain view of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   570
  existing locales (@{text import}) plus some additional elements
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   571
  (@{text body}).  Both @{text import} and @{text body} are optional;
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   572
  the degenerate form @{command "locale"}~@{text loc} defines an empty
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   573
  locale, which may still be useful to collect declarations of facts
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   574
  later on.  Type-inference on locale expressions automatically takes
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   575
  care of the most general typing that the combined context elements
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   576
  may acquire.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   577
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   578
  The @{text import} consists of a locale expression; see
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   579
  \secref{sec:proof-context} above.  Its @{keyword "for"} clause defines
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   580
  the parameters of @{text import}.  These are parameters of
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   581
  the defined locale.  Locale parameters whose instantiation is
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   582
  omitted automatically extend the (possibly empty) @{keyword "for"}
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   583
  clause: they are inserted at its beginning.  This means that these
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   584
  parameters may be referred to from within the expression and also in
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   585
  the subsequent context elements and provides a notational
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   586
  convenience for the inheritance of parameters in locale
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   587
  declarations.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   588
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   589
  The @{text body} consists of context elements.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   590
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   591
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   592
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   593
  \item @{element "fixes"}~@{text "x :: \<tau> (mx)"} declares a local
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   594
  parameter of type @{text \<tau>} and mixfix annotation @{text mx} (both
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   595
  are optional).  The special syntax declaration ``@{text
51657
3db1bbc82d8d more accurate documentation of "(structure)" mixfix;
wenzelm
parents: 51585
diff changeset
   596
  "("}@{keyword_ref "structure"}@{text ")"}'' means that @{text x} may
3db1bbc82d8d more accurate documentation of "(structure)" mixfix;
wenzelm
parents: 51585
diff changeset
   597
  be referenced implicitly in this context.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   598
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   599
  \item @{element "constrains"}~@{text "x :: \<tau>"} introduces a type
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   600
  constraint @{text \<tau>} on the local parameter @{text x}.  This
38110
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   601
  element is deprecated.  The type constraint should be introduced in
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   602
  the @{keyword "for"} clause or the relevant @{element "fixes"} element.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   603
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   604
  \item @{element "assumes"}~@{text "a: \<phi>\<^sub>1 \<dots> \<phi>\<^sub>n"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   605
  introduces local premises, similar to @{command "assume"} within a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   606
  proof (cf.\ \secref{sec:proof-context}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   607
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   608
  \item @{element "defines"}~@{text "a: x \<equiv> t"} defines a previously
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   609
  declared parameter.  This is similar to @{command "def"} within a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   610
  proof (cf.\ \secref{sec:proof-context}), but @{element "defines"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   611
  takes an equational proposition instead of variable-term pair.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   612
  left-hand side of the equation may have additional arguments, e.g.\
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   613
  ``@{element "defines"}~@{text "f x\<^sub>1 \<dots> x\<^sub>n \<equiv> t"}''.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   614
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   615
  \item @{element "notes"}~@{text "a = b\<^sub>1 \<dots> b\<^sub>n"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   616
  reconsiders facts within a local context.  Most notably, this may
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   617
  include arbitrary declarations in any attribute specifications
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   618
  included here, e.g.\ a local @{attribute simp} rule.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   619
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   620
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   621
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   622
  Both @{element "assumes"} and @{element "defines"} elements
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   623
  contribute to the locale specification.  When defining an operation
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   624
  derived from the parameters, @{command "definition"}
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
   625
  (\secref{sec:term-definitions}) is usually more appropriate.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   626
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   627
  Note that ``@{text "(\<IS> p\<^sub>1 \<dots> p\<^sub>n)"}'' patterns given
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   628
  in the syntax of @{element "assumes"} and @{element "defines"} above
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   629
  are illegal in locale definitions.  In the long goal format of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   630
  \secref{sec:goals}, term bindings may be included as expected,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   631
  though.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   632
  
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   633
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   634
  Locale specifications are ``closed up'' by
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   635
  turning the given text into a predicate definition @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   636
  loc_axioms} and deriving the original assumptions as local lemmas
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   637
  (modulo local definitions).  The predicate statement covers only the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   638
  newly specified assumptions, omitting the content of included locale
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   639
  expressions.  The full cumulative view is only provided on export,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   640
  involving another predicate @{text loc} that refers to the complete
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   641
  specification text.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   642
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   643
  In any case, the predicate arguments are those locale parameters
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   644
  that actually occur in the respective piece of text.  Also these
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   645
  predicates operate at the meta-level in theory, but the locale
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   646
  packages attempts to internalize statements according to the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   647
  object-logic setup (e.g.\ replacing @{text \<And>} by @{text \<forall>}, and
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   648
  @{text "\<Longrightarrow>"} by @{text "\<longrightarrow>"} in HOL; see also
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   649
  \secref{sec:object-logic}).  Separate introduction rules @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   650
  loc_axioms.intro} and @{text loc.intro} are provided as well.
59901
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   651
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   652
  \item @{command experiment}~@{text exprs}~@{keyword "begin"} opens an
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   653
  anonymous locale context with private naming policy. Specifications in its
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   654
  body are inaccessible from outside. This is useful to perform experiments,
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   655
  without polluting the name space.
840d03805755 added command 'experiment';
wenzelm
parents: 59785
diff changeset
   656
33867
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   657
  \item @{command "print_locale"}~@{text "locale"} prints the
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   658
  contents of the named locale.  The command omits @{element "notes"}
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   659
  elements by default.  Use @{command "print_locale"}@{text "!"} to
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   660
  have them included.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   661
59917
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   662
  \item @{command "print_locales"} prints the names of all locales of the
9830c944670f more uniform "verbose" option to print name space;
wenzelm
parents: 59905
diff changeset
   663
  current theory; the ``@{text "!"}'' option indicates extra verbosity.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   664
50716
e04c44dc11fc document 'locale_deps';
wenzelm
parents: 50128
diff changeset
   665
  \item @{command "locale_deps"} visualizes all locales and their
e04c44dc11fc document 'locale_deps';
wenzelm
parents: 50128
diff changeset
   666
  relations as a Hasse diagram. This includes locales defined as type
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   667
  classes (\secref{sec:class}).  See also @{command
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   668
  "print_dependencies"} below.
50716
e04c44dc11fc document 'locale_deps';
wenzelm
parents: 50128
diff changeset
   669
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   670
  \item @{method intro_locales} and @{method unfold_locales}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   671
  repeatedly expand all introduction rules of locale predicates of the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   672
  theory.  While @{method intro_locales} only applies the @{text
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   673
  loc.intro} introduction rules and therefore does not descend to
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   674
  assumptions, @{method unfold_locales} is more aggressive and applies
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   675
  @{text loc_axioms.intro} as well.  Both methods are aware of locale
28787
8ea7403147c5 removed "includes" element (lost update?);
wenzelm
parents: 28768
diff changeset
   676
  specifications entailed by the context, both from target statements,
8ea7403147c5 removed "includes" element (lost update?);
wenzelm
parents: 28768
diff changeset
   677
  and from interpretations (see below).  New goals that are entailed
8ea7403147c5 removed "includes" element (lost update?);
wenzelm
parents: 28768
diff changeset
   678
  by the current context are discharged automatically.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   679
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   680
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   681
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   682
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   683
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   684
subsection \<open>Locale interpretation\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   685
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   686
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   687
  \begin{matharray}{rcl}
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   688
    @{command_def "interpretation"} & : & @{text "theory | local_theory \<rightarrow> proof(prove)"} \\
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   689
    @{command_def "interpret"} & : & @{text "proof(state) | proof(chain) \<rightarrow> proof(prove)"} \\
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   690
    @{command_def "sublocale"} & : & @{text "theory | local_theory \<rightarrow> proof(prove)"} \\
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41434
diff changeset
   691
    @{command_def "print_dependencies"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   692
    @{command_def "print_interps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   693
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   694
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   695
  Locales may be instantiated, and the resulting instantiated
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   696
  declarations added to the current context.  This requires proof (of
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   697
  the instantiated specification) and is called \emph{locale
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   698
  interpretation}.  Interpretation is possible in locales (@{command
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   699
  "sublocale"}), global and local theories (@{command
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   700
  "interpretation"}) and also within proof bodies (@{command
48824
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   701
  "interpret"}).
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   702
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   703
  @{rail \<open>
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   704
    @@{command interpretation} @{syntax locale_expr} equations?
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   705
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   706
    @@{command interpret} @{syntax locale_expr} equations?
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   707
    ;
55029
61a6bf7d4b02 clarified @{rail} syntax: prefer explicit \<newline> symbol;
wenzelm
parents: 54049
diff changeset
   708
    @@{command sublocale} (@{syntax nameref} ('<' | '\<subseteq>'))? @{syntax locale_expr} \<newline>
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   709
      equations?
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   710
    ;
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   711
    @@{command print_dependencies} '!'? @{syntax locale_expr}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   712
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   713
    @@{command print_interps} @{syntax nameref}
41434
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   714
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   715
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   716
    equations: @'where' (@{syntax thmdecl}? @{syntax prop} + @'and')
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   717
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   718
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   719
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   720
33867
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   721
  \item @{command "interpretation"}~@{text "expr \<WHERE> eqns"}
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   722
  interprets @{text expr} in a global or local theory.  The command
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   723
  generates proof obligations for the instantiated specifications.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   724
  Once these are discharged by the user, instantiated declarations (in
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   725
  particular, facts) are added to the theory in a post-processing
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   726
  phase.
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   727
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   728
  The command is aware of interpretations that are already active.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   729
  Post-processing is achieved through a variant of roundup that takes
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   730
  the interpretations of the current global or local theory into
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   731
  account.  In order to simplify the proof obligations according to
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   732
  existing interpretations use methods @{method intro_locales} or
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   733
  @{method unfold_locales}.
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   734
53369
b4bcac7d065b Clarifies that interpretation does not only apply to facts, but to declaratoins in general.
ballarin
parents: 53368
diff changeset
   735
  When adding declarations to locales, interpreted versions of these
b4bcac7d065b Clarifies that interpretation does not only apply to facts, but to declaratoins in general.
ballarin
parents: 53368
diff changeset
   736
  declarations are added to the global theory for all interpretations
b4bcac7d065b Clarifies that interpretation does not only apply to facts, but to declaratoins in general.
ballarin
parents: 53368
diff changeset
   737
  in the global theory as well. That is, interpretations in global
b4bcac7d065b Clarifies that interpretation does not only apply to facts, but to declaratoins in general.
ballarin
parents: 53368
diff changeset
   738
  theories dynamically participate in any declarations added to
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   739
  locales.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   740
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   741
  In contrast, the lifetime of an interpretation in a local theory is
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   742
  limited to the current context block.  At the closing @{command end}
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   743
  of the block the interpretation and its declarations disappear.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   744
  This enables establishing facts based on interpretations without
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   745
  creating permanent links to the interpreted locale instances, as
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   746
  would be the case with @{command sublocale}.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   747
  While @{command "interpretation"}~@{text "(\<IN> c)
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   748
  \<dots>"} is technically possible, it is not useful since its result is
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   749
  discarded immediately.
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   750
48824
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   751
  Free variables in the interpreted expression are allowed.  They are
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   752
  turned into schematic variables in the generated declarations.  In
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   753
  order to use a free variable whose name is already bound in the
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   754
  context --- for example, because a constant of that name exists ---
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   755
  add it to the @{keyword "for"} clause.
48824
45d0e40b07af Clarification: free variables allowed in interpreted locale instances.
ballarin
parents: 47484
diff changeset
   756
53370
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   757
  The equations @{text eqns} yield \emph{rewrite morphisms}, which are
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   758
  unfolded during post-processing and are useful for interpreting
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   759
  concepts introduced through definitions.  The equations must be
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   760
  proved.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   761
38110
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   762
  \item @{command "interpret"}~@{text "expr \<WHERE> eqns"} interprets
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   763
  @{text expr} in the proof context and is otherwise similar to
53370
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   764
  interpretation in local theories.  Note that for @{command
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   765
  "interpret"} the @{text eqns} should be
41434
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   766
  explicitly universally quantified.
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   767
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   768
  \item @{command "sublocale"}~@{text "name \<subseteq> expr \<WHERE>
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   769
  eqns"}
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   770
  interprets @{text expr} in the locale @{text name}.  A proof that
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   771
  the specification of @{text name} implies the specification of
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   772
  @{text expr} is required.  As in the localized version of the
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   773
  theorem command, the proof is in the context of @{text name}.  After
53370
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   774
  the proof obligation has been discharged, the locale hierarchy is
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   775
  changed as if @{text name} imported @{text expr} (hence the name
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   776
  @{command "sublocale"}).  When the context of @{text name} is
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   777
  subsequently entered, traversing the locale hierarchy will involve
53370
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   778
  the locale instances of @{text expr}, and their declarations will be
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   779
  added to the context.  This makes @{command "sublocale"}
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   780
  dynamic: extensions of a locale that is instantiated in @{text expr}
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   781
  may take place after the @{command "sublocale"} declaration and
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   782
  still become available in the context.  Circular @{command
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   783
  "sublocale"} declarations are allowed as long as they do not lead to
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   784
  infinite chains.
41434
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   785
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   786
  If interpretations of @{text name} exist in the current global
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   787
  theory, the command adds interpretations for @{text expr} as well,
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   788
  with the same qualifier, although only for fragments of @{text expr}
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   789
  that are not interpreted in the theory already.
41434
710cdb9e0d17 Documentation for 'interpret' and 'sublocale' with mixins.
ballarin
parents: 41249
diff changeset
   790
53370
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   791
  The equations @{text eqns} amend the morphism through
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   792
  which @{text expr} is interpreted.  This enables mapping definitions
7a41ec2cc522 Further clarifies sublocale and rewrite morphisms.
ballarin
parents: 53369
diff changeset
   793
  from the interpreted locales to entities of @{text name} and can
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   794
  help break infinite chains induced by circular @{command
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   795
  "sublocale"} declarations.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   796
53368
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   797
  In a named context block the @{command sublocale} command may also
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   798
  be used, but the locale argument must be omitted.  The command then
92b9965f479d Clarifies documentation of interpretation in local theories.
ballarin
parents: 53015
diff changeset
   799
  refers to the locale (or class) target of the context block.
51747
e4b5bebe5235 documentation and NEWS
haftmann
parents: 51657
diff changeset
   800
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41434
diff changeset
   801
  \item @{command "print_dependencies"}~@{text "expr"} is useful for
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   802
  understanding the effect of an interpretation of @{text "expr"} in
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   803
  the current context.  It lists all locale instances for which
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   804
  interpretations would be added to the current context.  Variant
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   805
  @{command "print_dependencies"}@{text "!"} does not generalize
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   806
  parameters and assumes an empty context --- that is, it prints all
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   807
  locale instances that would be considered for interpretation.  The
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   808
  latter is useful for understanding the dependencies of a locale
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   809
  expression.
41435
12585dfb86fe Diagnostic command to show locale dependencies.
ballarin
parents: 41434
diff changeset
   810
33867
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   811
  \item @{command "print_interps"}~@{text "locale"} lists all
38110
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   812
  interpretations of @{text "locale"} in the current theory or proof
51565
5e9fdbdf88ce Improvements to the print_dependencies command.
ballarin
parents: 51313
diff changeset
   813
  context, including those due to a combination of an @{command
38110
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   814
  "interpretation"} or @{command "interpret"} and one or several
2c1913d1b945 Documentation of 'interpret' updated.
ballarin
parents: 37768
diff changeset
   815
  @{command "sublocale"} declarations.
33867
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   816
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   817
  \end{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   818
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   819
  \begin{warn}
54049
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   820
    If a global theory inherits declarations (body elements) for a
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   821
    locale from one parent and an interpretation of that locale from
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   822
    another parent, the interpretation will not be applied to the
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   823
    declarations.
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   824
  \end{warn}
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   825
566b769c3477 Streamlined locales reference material.
ballarin
parents: 53536
diff changeset
   826
  \begin{warn}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   827
    Since attributes are applied to interpreted theorems,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   828
    interpretation may modify the context of common proof tools, e.g.\
33867
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   829
    the Simplifier or Classical Reasoner.  As the behavior of such
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   830
    tools is \emph{not} stable under interpretation morphisms, manual
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   831
    declarations might have to be added to the target context of the
52643d0f856d Typos in documenation.
ballarin
parents: 33846
diff changeset
   832
    interpretation to revert such declarations.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   833
  \end{warn}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   834
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   835
  \begin{warn}
51747
e4b5bebe5235 documentation and NEWS
haftmann
parents: 51657
diff changeset
   836
    An interpretation in a local theory or proof context may subsume previous
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   837
    interpretations.  This happens if the same specification fragment
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   838
    is interpreted twice and the instantiation of the second
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   839
    interpretation is more general than the interpretation of the
33846
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   840
    first.  The locale package does not attempt to remove subsumed
cff41e82e3df Updated locale documentation.
ballarin
parents: 33516
diff changeset
   841
    interpretations.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   842
  \end{warn}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   843
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   844
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   845
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   846
subsubsection \<open>Permanent locale interpretation\<close>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   847
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   848
text \<open>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   849
  Permanent locale interpretation is a library extension on top
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   850
  of @{command "interpretation"} and @{command "sublocale"}.  It is
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   851
  available by importing theory @{file "~~/src/Tools/Permanent_Interpretation.thy"}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   852
  and provides
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   853
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   854
  \begin{enumerate}
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   855
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   856
  \<^enum> a unified view on arbitrary suitable local theories as interpretation target;
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   857
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   858
  \<^enum> rewrite morphisms by means of \emph{rewrite definitions}.
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   859
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   860
  \end{enumerate}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   861
  
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   862
  \begin{matharray}{rcl}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   863
    @{command_def "permanent_interpretation"} & : & @{text "local_theory \<rightarrow> proof(prove)"}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   864
  \end{matharray}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   865
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   866
  @{rail \<open>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   867
    @@{command permanent_interpretation} @{syntax locale_expr} \<newline>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   868
      definitions? equations?
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   869
    ;
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   870
    definitions: @'defining' (@{syntax thmdecl}? @{syntax name} \<newline>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   871
      @{syntax mixfix}? @'=' @{syntax term} + @'and');
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   872
    equations: @'where' (@{syntax thmdecl}? @{syntax prop} + @'and')
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   873
  \<close>}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   874
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   875
  \begin{description}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   876
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   877
  \item @{command "permanent_interpretation"}~@{text "expr \<DEFINING> defs \<WHERE> eqns"}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   878
  interprets @{text expr} in the current local theory.  The command
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   879
  generates proof obligations for the instantiated specifications.
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   880
  Instantiated declarations (in particular, facts) are added to the
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   881
  local theory's underlying target in a post-processing phase.  When
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   882
  adding declarations to locales, interpreted versions of these
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   883
  declarations are added to any target for all interpretations
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   884
  in that target as well. That is, permanent interpretations
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   885
  dynamically participate in any declarations added to
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   886
  locales.
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   887
  
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   888
  The local theory's underlying target must explicitly support
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   889
  permanent interpretations.  Prominent examples are global theories
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   890
  (where @{command "permanent_interpretation"} is technically
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   891
  corresponding to @{command "interpretation"}) and locales
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   892
  (where @{command "permanent_interpretation"} is technically
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   893
  corresponding to @{command "sublocale"}).  Unnamed contexts
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   894
  (see \secref{sec:target}) are not admissible since they are
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   895
  non-permanent due to their very nature.  
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   896
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   897
  In additions to \emph{rewrite morphisms} specified by @{text eqns},
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   898
  also \emph{rewrite definitions} may be specified.  Semantically, a
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   899
  rewrite definition
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   900
  
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   901
  \begin{itemize}
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   902
  
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   903
  \<^item> produces a corresponding definition in
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   904
  the local theory's underlying target \emph{and}
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   905
  
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   906
  \<^item> augments the rewrite morphism with the equation
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   907
  stemming from the symmetric of the corresponding definition.
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   908
  
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   909
  \end{itemize}
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   910
  
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   911
  This is technically different to to a naive combination
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   912
  of a conventional definition and an explicit rewrite equation:
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   913
  
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   914
  \begin{itemize}
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   915
  
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   916
  \<^item> Definitions are parsed in the syntactic interpretation
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   917
  context, just like equations.
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   918
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   919
  \<^item> The proof needs not consider the equations stemming from
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
   920
  definitions -- they are proved implicitly by construction.
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   921
      
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   922
  \end{itemize}
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   923
  
59320
a375de4dc07a avoid technical term "mixin" in user documentation text
haftmann
parents: 59028
diff changeset
   924
  Rewrite definitions yield a pattern for introducing new explicit
59003
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   925
  operations for existing terms after interpretation.
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   926
  
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   927
  \end{description}
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   928
\<close>
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   929
16d92d37a8a1 documentation stubs about permanent_interpretation
haftmann
parents: 58724
diff changeset
   930
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   931
section \<open>Classes \label{sec:class}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   932
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
   933
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   934
  \begin{matharray}{rcl}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   935
    @{command_def "class"} & : & @{text "theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   936
    @{command_def "instantiation"} & : & @{text "theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   937
    @{command_def "instance"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
42626
6ac8c55c657e eliminated some duplicate "def" positions;
wenzelm
parents: 42625
diff changeset
   938
    @{command "instance"} & : & @{text "theory \<rightarrow> proof(prove)"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   939
    @{command_def "subclass"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   940
    @{command_def "print_classes"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
29706
10e6f2faa1e5 updated type class section
haftmann
parents: 29613
diff changeset
   941
    @{command_def "class_deps"}@{text "\<^sup>*"} & : & @{text "context \<rightarrow>"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
   942
    @{method_def intro_classes} & : & @{text method} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   943
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   944
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   945
  A class is a particular locale with \emph{exactly one} type variable
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   946
  @{text \<alpha>}.  Beyond the underlying locale, a corresponding type class
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   947
  is established which is interpreted logically as axiomatic type
58552
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
   948
  class @{cite "Wenzel:1997:TPHOL"} whose logical content are the
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   949
  assumptions of the locale.  Thus, classes provide the full
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   950
  generality of locales combined with the commodity of type classes
58552
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
   951
  (notably type-inference).  See @{cite "isabelle-classes"} for a short
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   952
  tutorial.
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
   953
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   954
  @{rail \<open>
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   955
    @@{command class} class_spec @'begin'?
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   956
    ;
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   957
    class_spec: @{syntax name} '='
42617
77d239840285 more precise rail diagrams;
wenzelm
parents: 42596
diff changeset
   958
      ((@{syntax nameref} '+' (@{syntax context_elem}+)) |
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   959
        @{syntax nameref} | (@{syntax context_elem}+))      
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   960
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
   961
    @@{command instantiation} (@{syntax nameref} + @'and') '::' @{syntax arity} @'begin'
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   962
    ;
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   963
    @@{command instance} (() | (@{syntax nameref} + @'and') '::' @{syntax arity} |
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
   964
      @{syntax nameref} ('<' | '\<subseteq>') @{syntax nameref} )
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
   965
    ;
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
   966
    @@{command subclass} @{syntax nameref}
58202
be1d10595b7b restrictive options for class dependencies
haftmann
parents: 57947
diff changeset
   967
    ;
60091
9feddd64183e tuned signature;
wenzelm
parents: 60090
diff changeset
   968
    @@{command class_deps} (class_bounds class_bounds?)?
60090
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
   969
    ;
60091
9feddd64183e tuned signature;
wenzelm
parents: 60090
diff changeset
   970
    class_bounds: @{syntax sort} | '(' (@{syntax sort} + @'|') ')'
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
   971
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   972
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   973
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   974
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   975
  \item @{command "class"}~@{text "c = superclasses + body"} defines
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   976
  a new class @{text c}, inheriting from @{text superclasses}.  This
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   977
  introduces a locale @{text c} with import of all locales @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   978
  superclasses}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   979
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   980
  Any @{element "fixes"} in @{text body} are lifted to the global
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   981
  theory level (\emph{class operations} @{text "f\<^sub>1, \<dots>,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   982
  f\<^sub>n"} of class @{text c}), mapping the local type parameter
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   983
  @{text \<alpha>} to a schematic type variable @{text "?\<alpha> :: c"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   984
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   985
  Likewise, @{element "assumes"} in @{text body} are also lifted,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   986
  mapping each local parameter @{text "f :: \<tau>[\<alpha>]"} to its
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   987
  corresponding global constant @{text "f :: \<tau>[?\<alpha> :: c]"}.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   988
  corresponding introduction rule is provided as @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   989
  c_class_axioms.intro}.  This rule should be rarely needed directly
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   990
  --- the @{method intro_classes} method takes care of the details of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   991
  class membership proofs.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
   992
28768
a056077b65a1 added section "Co-regularity of type classes and arities" (variant from old ref manual);
wenzelm
parents: 28767
diff changeset
   993
  \item @{command "instantiation"}~@{text "t :: (s\<^sub>1, \<dots>, s\<^sub>n)s
51747
e4b5bebe5235 documentation and NEWS
haftmann
parents: 51657
diff changeset
   994
  \<BEGIN>"} opens a target (cf.\ \secref{sec:target}) which
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
   995
  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
   996
  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
   997
  \<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
   998
  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
   999
  concluded by an @{command_ref (local) "end"} command.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1000
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1001
  Note that a list of simultaneous type constructors may be given;
31914
0bf275fbe93a instance arities can be simultaneous
haftmann
parents: 31681
diff changeset
  1002
  this corresponds nicely to mutually recursive type definitions, e.g.\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1003
  in Isabelle/HOL.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1004
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1005
  \item @{command "instance"} in an instantiation target body sets
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1006
  up a goal stating the type arities claimed at the opening @{command
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1007
  "instantiation"}.  The proof would usually proceed by @{method
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1008
  intro_classes}, and then establish the characteristic theorems of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1009
  the type classes involved.  After finishing the proof, the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1010
  background theory will be augmented by the proven type arities.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1011
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1012
  On the theory level, @{command "instance"}~@{text "t :: (s\<^sub>1, \<dots>,
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1013
  s\<^sub>n)s"} provides a convenient way to instantiate a type class with no
37112
67934c40a5f7 Typo fixed.
webertj
parents: 36454
diff changeset
  1014
  need to specify operations: one can continue with the
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1015
  instantiation proof immediately.
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1016
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1017
  \item @{command "subclass"}~@{text c} in a class context for class
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1018
  @{text d} sets up a goal stating that class @{text c} is logically
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1019
  contained in class @{text d}.  After finishing the proof, class
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1020
  @{text d} is proven to be subclass @{text c} and the locale @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1021
  c} is interpreted into @{text d} simultaneously.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1022
56594
e3a06699a13f tuned spelling;
wenzelm
parents: 56451
diff changeset
  1023
  A weakened form of this is available through a further variant of
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1024
  @{command instance}:  @{command instance}~@{text "c\<^sub>1 \<subseteq> c\<^sub>2"} opens
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 51747
diff changeset
  1025
  a proof that class @{text "c\<^sub>2"} implies @{text "c\<^sub>1"} without reference
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1026
  to the underlying locales;  this is useful if the properties to prove
56594
e3a06699a13f tuned spelling;
wenzelm
parents: 56451
diff changeset
  1027
  the logical connection are not sufficient on the locale level but on
31681
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1028
  the theory level.
127e8a8b8cde refined section concerning classes
haftmann
parents: 31047
diff changeset
  1029
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1030
  \item @{command "print_classes"} prints all classes in the current
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1031
  theory.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1032
60090
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1033
  \item @{command "class_deps"} visualizes classes and their subclass
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1034
  relations as a directed acyclic graph. By default, all classes from the
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1035
  current theory context are show. This may be restricted by optional bounds
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1036
  as follows: @{command "class_deps"}~@{text upper} or @{command
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1037
  "class_deps"}~@{text "upper lower"}. A class is visualized, iff it is a
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1038
  subclass of some sort from @{text upper} and a superclass of some sort
75ec8fd5d2bf misc tuning and clarification;
wenzelm
parents: 59990
diff changeset
  1039
  from @{text lower}.
29706
10e6f2faa1e5 updated type class section
haftmann
parents: 29613
diff changeset
  1040
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1041
  \item @{method intro_classes} repeatedly expands all class
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1042
  introduction rules of this theory.  Note that this method usually
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1043
  needs not be named explicitly, as it is already included in the
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1044
  default proof step (e.g.\ of @{command "proof"}).  In particular,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1045
  instantiation of trivial (syntactic) classes may be performed by a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1046
  single ``@{command ".."}'' proof step.
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
  1047
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1048
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1049
\<close>
26870
94bedbb34b92 misc reorganization;
wenzelm
parents: 26869
diff changeset
  1050
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1051
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1052
subsection \<open>The class target\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1053
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1054
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1055
  %FIXME check
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1056
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1057
  A named context may refer to a locale (cf.\ \secref{sec:target}).
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1058
  If this locale is also a class @{text c}, apart from the common
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1059
  locale target behaviour the following happens.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1060
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1061
  \begin{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1062
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1063
  \<^item> Local constant declarations @{text "g[\<alpha>]"} referring to the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1064
  local type parameter @{text \<alpha>} and local parameters @{text "f[\<alpha>]"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1065
  are accompanied by theory-level constants @{text "g[?\<alpha> :: c]"}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1066
  referring to theory-level class operations @{text "f[?\<alpha> :: c]"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1067
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1068
  \<^item> Local theorem bindings are lifted as are assumptions.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1069
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1070
  \<^item> Local syntax refers to local operations @{text "g[\<alpha>]"} and
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1071
  global operations @{text "g[?\<alpha> :: c]"} uniformly.  Type inference
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1072
  resolves ambiguities.  In rare cases, manual type annotations are
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1073
  needed.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1074
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1075
  \end{itemize}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1076
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1077
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1078
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1079
subsection \<open>Co-regularity of type classes and arities\<close>
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1080
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1081
text \<open>The class relation together with the collection of
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1082
  type-constructor arities must obey the principle of
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1083
  \emph{co-regularity} as defined below.
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1084
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1085
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1086
  For the subsequent formulation of co-regularity we assume
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1087
  that the class relation is closed by transitivity and reflexivity.
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1088
  Moreover the collection of arities @{text "t :: (\<^vec>s)c"} is
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1089
  completed such that @{text "t :: (\<^vec>s)c"} and @{text "c \<subseteq> c'"}
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1090
  implies @{text "t :: (\<^vec>s)c'"} for all such declarations.
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1091
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1092
  Treating sorts as finite sets of classes (meaning the intersection),
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1093
  the class relation @{text "c\<^sub>1 \<subseteq> c\<^sub>2"} is extended to sorts as
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1094
  follows:
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1095
  \[
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1096
    @{text "s\<^sub>1 \<subseteq> s\<^sub>2 \<equiv> \<forall>c\<^sub>2 \<in> s\<^sub>2. \<exists>c\<^sub>1 \<in> s\<^sub>1. c\<^sub>1 \<subseteq> c\<^sub>2"}
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1097
  \]
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1098
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1099
  This relation on sorts is further extended to tuples of sorts (of
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1100
  the same length) in the component-wise way.
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1101
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1102
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1103
  Co-regularity of the class relation together with the
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1104
  arities relation means:
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1105
  \[
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1106
    @{text "t :: (\<^vec>s\<^sub>1)c\<^sub>1 \<Longrightarrow> t :: (\<^vec>s\<^sub>2)c\<^sub>2 \<Longrightarrow> c\<^sub>1 \<subseteq> c\<^sub>2 \<Longrightarrow> \<^vec>s\<^sub>1 \<subseteq> \<^vec>s\<^sub>2"}
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1107
  \]
61420
ee42cba50933 redundant due to \parindent 0pt;
wenzelm
parents: 61414
diff changeset
  1108
  for all such arities.  In other words, whenever the result
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1109
  classes of some type-constructor arities are related, then the
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1110
  argument sorts need to be related in the same way.
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1111
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1112
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1113
  Co-regularity is a very fundamental property of the
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1114
  order-sorted algebra of types.  For example, it entails principle
58552
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
  1115
  types and most general unifiers, e.g.\ see @{cite "nipkow-prehofer"}.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1116
\<close>
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1117
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1118
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1119
section \<open>Unrestricted overloading\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1120
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1121
text \<open>
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1122
  \begin{matharray}{rcl}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1123
    @{command_def "overloading"} & : & @{text "theory \<rightarrow> local_theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1124
  \end{matharray}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1125
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1126
  Isabelle/Pure's definitional schemes support certain forms of
31047
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1127
  overloading (see \secref{sec:consts}).  Overloading means that a
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1128
  constant being declared as @{text "c :: \<alpha> decl"} may be
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1129
  defined separately on type instances
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1130
  @{text "c :: (\<beta>\<^sub>1, \<dots>, \<beta>\<^sub>n) t decl"}
56594
e3a06699a13f tuned spelling;
wenzelm
parents: 56451
diff changeset
  1131
  for each type constructor @{text t}.  At most occasions
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1132
  overloading will be used in a Haskell-like fashion together with
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1133
  type classes by means of @{command "instantiation"} (see
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1134
  \secref{sec:class}).  Sometimes low-level overloading is desirable.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1135
  The @{command "overloading"} target provides a convenient view for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1136
  end-users.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1137
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1138
  @{rail \<open>
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1139
    @@{command overloading} ( spec + ) @'begin'
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1140
    ;
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1141
    spec: @{syntax name} ( '==' | '\<equiv>' ) @{syntax term} ( '(' @'unchecked' ')' )?
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1142
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1143
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1144
  \begin{description}
27040
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
  \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
  1147
  opens a theory target (cf.\ \secref{sec:target}) which allows to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1148
  specify constants with overloaded definitions.  These are identified
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1149
  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
  1150
  constants @{text "c\<^sub>i"} at particular type instances.  The
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1151
  definitions themselves are established using common specification
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1152
  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
  1153
  corresponding constants.  The target is concluded by @{command
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1154
  (local) "end"}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1155
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1156
  A @{text "(unchecked)"} option disables global dependency checks for
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1157
  the corresponding definition, which is occasionally useful for
31047
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1158
  exotic overloading (see \secref{sec:consts} for a precise description).
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1159
  It is at the discretion of the user to avoid
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1160
  malformed theory specifications!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1161
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1162
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1163
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1164
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1165
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1166
section \<open>Incorporating ML code \label{sec:ML}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1167
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1168
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1169
  \begin{matharray}{rcl}
56275
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1170
    @{command_def "SML_file"} & : & @{text "theory \<rightarrow> theory"} \\
48890
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1171
    @{command_def "ML_file"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1172
    @{command_def "ML"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1173
    @{command_def "ML_prf"} & : & @{text "proof \<rightarrow> proof"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1174
    @{command_def "ML_val"} & : & @{text "any \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1175
    @{command_def "ML_command"} & : & @{text "any \<rightarrow>"} \\
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1176
    @{command_def "setup"} & : & @{text "theory \<rightarrow> theory"} \\
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1177
    @{command_def "local_setup"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
57941
57200bdc2aa7 localized command 'method_setup' and 'attribute_setup';
wenzelm
parents: 57487
diff changeset
  1178
    @{command_def "attribute_setup"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1179
  \end{matharray}
57478
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1180
  \begin{tabular}{rcll}
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1181
    @{attribute_def ML_print_depth} & : & @{text attribute} & default 10 \\
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1182
    @{attribute_def ML_source_trace} & : & @{text attribute} & default @{text false} \\
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1183
    @{attribute_def ML_exception_trace} & : & @{text attribute} & default @{text false} \\
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1184
  \end{tabular}
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1185
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1186
  @{rail \<open>
56275
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1187
    (@@{command SML_file} | @@{command ML_file}) @{syntax name}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1188
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1189
    (@@{command ML} | @@{command ML_prf} | @@{command ML_val} |
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1190
      @@{command ML_command} | @@{command setup} | @@{command local_setup}) @{syntax text}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1191
    ;
59783
00b62aa9f430 tuned syntax diagrams -- no duplication of "target";
wenzelm
parents: 59781
diff changeset
  1192
    @@{command attribute_setup} @{syntax name} '=' @{syntax text} @{syntax text}?
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1193
  \<close>}
27040
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
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1196
56275
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1197
  \item @{command "SML_file"}~@{text "name"} reads and evaluates the
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1198
  given Standard ML file.  Top-level SML bindings are stored within
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1199
  the theory context; the initial environment is restricted to the
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1200
  Standard ML implementation of Poly/ML, without the many add-ons of
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1201
  Isabelle/ML.  Multiple @{command "SML_file"} commands may be used to
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1202
  build larger Standard ML projects, independently of the regular
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1203
  Isabelle/ML environment.
600f432ab556 added command 'SML_file' for Standard ML without Isabelle/ML add-ons;
wenzelm
parents: 55837
diff changeset
  1204
48890
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1205
  \item @{command "ML_file"}~@{text "name"} reads and evaluates the
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1206
  given ML file.  The current theory context is passed down to the ML
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1207
  toplevel and may be modified, using @{ML "Context.>>"} or derived ML
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1208
  commands.  Top-level ML bindings are stored within the (global or
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1209
  local) theory context.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1210
  
48890
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1211
  \item @{command "ML"}~@{text "text"} is similar to @{command
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1212
  "ML_file"}, but evaluates directly the given @{text "text"}.
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1213
  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
  1214
  context.
28281
132456af0731 added ML_prf;
wenzelm
parents: 28114
diff changeset
  1215
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1216
  \item @{command "ML_prf"} is analogous to @{command "ML"} but works
48890
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1217
  within a proof context.  Top-level ML bindings are stored within the
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1218
  proof context in a purely sequential fashion, disregarding the
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1219
  nested proof structure.  ML bindings introduced by @{command
d72ca5742f80 'ML_file' evaluates ML text from a file directly within the theory, without predeclaration via 'uses';
wenzelm
parents: 48824
diff changeset
  1220
  "ML_prf"} are discarded at the end of the proof.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1221
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1222
  \item @{command "ML_val"} and @{command "ML_command"} are diagnostic
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1223
  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
  1224
  updated.  @{command "ML_val"} echos the bindings produced at the ML
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1225
  toplevel, but @{command "ML_command"} is silent.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1226
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1227
  \item @{command "setup"}~@{text "text"} changes the current theory
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1228
  context by applying @{text "text"}, which refers to an ML expression
30461
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1229
  of type @{ML_type "theory -> theory"}.  This enables to initialize
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1230
  any object-logic specific tools and packages written in ML, for
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1231
  example.
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1232
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1233
  \item @{command "local_setup"} is similar to @{command "setup"} for
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1234
  a local theory context, and an ML expression of type @{ML_type
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1235
  "local_theory -> local_theory"}.  This allows to
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1236
  invoke local theory specification packages without going through
00323c45ea83 added 'local_setup' command;
wenzelm
parents: 30242
diff changeset
  1237
  concrete outer syntax, for example.
28758
4ce896a30f88 added bind_thm, bind_thms;
wenzelm
parents: 28757
diff changeset
  1238
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1239
  \item @{command "attribute_setup"}~@{text "name = text description"}
57941
57200bdc2aa7 localized command 'method_setup' and 'attribute_setup';
wenzelm
parents: 57487
diff changeset
  1240
  defines an attribute in the current context.  The given @{text
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1241
  "text"} has to be an ML expression of type
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1242
  @{ML_type "attribute context_parser"}, cf.\ basic parsers defined in
55837
154855d9a564 clarified names of antiquotations and markup;
wenzelm
parents: 55385
diff changeset
  1243
  structure @{ML_structure Args} and @{ML_structure Attrib}.
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1244
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1245
  In principle, attributes can operate both on a given theorem and the
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1246
  implicit context, although in practice only one is modified and the
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1247
  other serves as parameter.  Here are examples for these two cases:
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1248
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1249
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1250
\<close>
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1251
59905
678c9e625782 misc tuning -- keep name space more clean;
wenzelm
parents: 59901
diff changeset
  1252
(*<*)experiment begin(*>*)
58619
4b41df5fef81 clarified whitespace;
wenzelm
parents: 58618
diff changeset
  1253
  attribute_setup my_rule =
4b41df5fef81 clarified whitespace;
wenzelm
parents: 58618
diff changeset
  1254
    \<open>Attrib.thms >> (fn ths =>
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1255
      Thm.rule_attribute
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1256
        (fn context: Context.generic => fn th: thm =>
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1257
          let val th' = th OF ths
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1258
          in th' end))\<close>
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1259
58619
4b41df5fef81 clarified whitespace;
wenzelm
parents: 58618
diff changeset
  1260
  attribute_setup my_declaration =
4b41df5fef81 clarified whitespace;
wenzelm
parents: 58618
diff changeset
  1261
    \<open>Attrib.thms >> (fn ths =>
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1262
      Thm.declaration_attribute
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1263
        (fn th: thm => fn context: Context.generic =>
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1264
          let val context' = context
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1265
          in context' end))\<close>
59905
678c9e625782 misc tuning -- keep name space more clean;
wenzelm
parents: 59901
diff changeset
  1266
(*<*)end(*>*)
30526
7f9a9ec1c94d added 'attribute_setup' command;
wenzelm
parents: 30461
diff changeset
  1267
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1268
text \<open>
57478
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1269
  \begin{description}
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1270
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1271
  \item @{attribute ML_print_depth} controls the printing depth of the ML
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1272
  toplevel pretty printer; the precise effect depends on the ML compiler and
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1273
  run-time system. Typically the limit should be less than 10. Bigger values
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1274
  such as 100--1000 are occasionally useful for debugging.
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1275
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1276
  \item @{attribute ML_source_trace} indicates whether the source text that
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1277
  is given to the ML compiler should be output: it shows the raw Standard ML
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1278
  after expansion of Isabelle/ML antiquotations.
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1279
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1280
  \item @{attribute ML_exception_trace} indicates whether the ML run-time
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1281
  system should print a detailed stack trace on exceptions. The result is
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1282
  dependent on the particular ML compiler version. Note that after Poly/ML
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1283
  5.3 some optimizations in the run-time systems may hinder exception
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1284
  traces.
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1285
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1286
  The boundary for the exception trace is the current Isar command
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1287
  transactions. It is occasionally better to insert the combinator @{ML
58552
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
  1288
  Runtime.exn_trace} into ML code for debugging @{cite
66fed99e874f prefer @{cite} antiquotation;
wenzelm
parents: 58316
diff changeset
  1289
  "isabelle-implementation"}, closer to the point where it actually
57478
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1290
  happens.
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1291
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1292
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1293
\<close>
57478
fa14d60a8cca more on ML options;
wenzelm
parents: 56594
diff changeset
  1294
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1295
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1296
section \<open>Primitive specification elements\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1297
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1298
subsection \<open>Sorts\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1299
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1300
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1301
  \begin{matharray}{rcll}
37768
e86221f3bac7 moved co-regularity to class section; avoid duplicated class_deps
haftmann
parents: 37112
diff changeset
  1302
    @{command_def "default_sort"} & : & @{text "local_theory \<rightarrow> local_theory"}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1303
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1304
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1305
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1306
    @@{command default_sort} @{syntax sort}
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1307
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1308
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1309
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1310
36454
f2b5bcc61a8c command 'defaultsort' is renamed to 'default_sort', it works within a local theory context;
wenzelm
parents: 36178
diff changeset
  1311
  \item @{command "default_sort"}~@{text s} makes sort @{text s} the
28767
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1312
  new default sort for any type variable that is given explicitly in
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1313
  the text, but lacks a sort constraint (wrt.\ the current context).
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1314
  Type variables generated by type inference are not affected.
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1315
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1316
  Usually the default sort is only changed when defining a new
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1317
  object-logic.  For example, the default sort in Isabelle/HOL is
39831
350857040d09 prefer checked antiquotations;
wenzelm
parents: 39214
diff changeset
  1318
  @{class type}, the class of all HOL types.
28767
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1319
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1320
  When merging theories, the default sorts of the parents are
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1321
  logically intersected, i.e.\ the representations as lists of classes
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1322
  are joined.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1323
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1324
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1325
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1326
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1327
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1328
subsection \<open>Types \label{sec:types-pure}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1329
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1330
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1331
  \begin{matharray}{rcll}
41249
26f12f98f50a Command 'type_synonym' (with single argument) supersedes 'types' (legacy feature);
wenzelm
parents: 40800
diff changeset
  1332
    @{command_def "type_synonym"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
35681
8b22a498b034 localized typedecl;
wenzelm
parents: 35351
diff changeset
  1333
    @{command_def "typedecl"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1334
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1335
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1336
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1337
    @@{command type_synonym} (@{syntax typespec} '=' @{syntax type} @{syntax mixfix}?)
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1338
    ;
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1339
    @@{command typedecl} @{syntax typespec} @{syntax mixfix}?
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1340
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1341
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1342
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1343
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1344
  \item @{command "type_synonym"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t = \<tau>"} introduces a
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1345
  \emph{type synonym} @{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t"} for the existing type @{text
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1346
  "\<tau>"}. Unlike the semantic type definitions in Isabelle/HOL, type synonyms
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1347
  are merely syntactic abbreviations without any logical significance.
41249
26f12f98f50a Command 'type_synonym' (with single argument) supersedes 'types' (legacy feature);
wenzelm
parents: 40800
diff changeset
  1348
  Internally, type synonyms are fully expanded.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1349
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1350
  \item @{command "typedecl"}~@{text "(\<alpha>\<^sub>1, \<dots>, \<alpha>\<^sub>n) t"} declares a new
28767
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1351
  type constructor @{text t}.  If the object-logic defines a base sort
f09ceb800d00 minor tuning (according to old ref manual);
wenzelm
parents: 28762
diff changeset
  1352
  @{text s}, then the constructor is declared to operate on that, via
55385
169e12bbf9a3 discontinued axiomatic 'classes', 'classrel', 'arities';
wenzelm
parents: 55117
diff changeset
  1353
  the axiomatic type-class instance @{text "t :: (s, \<dots>, s)s"}.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1354
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1355
  \end{description}
57487
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1356
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1357
  \begin{warn}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1358
  If you introduce a new type axiomatically, i.e.\ via @{command_ref
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1359
  typedecl} and @{command_ref axiomatization}
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1360
  (\secref{sec:axiomatizations}), the minimum requirement is that it has a
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1361
  non-empty model, to avoid immediate collapse of the logical environment.
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1362
  Moreover, one needs to demonstrate that the interpretation of such
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1363
  free-form axiomatizations can coexist with other axiomatization schemes
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1364
  for types, notably @{command_def typedef} in Isabelle/HOL
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1365
  (\secref{sec:hol-typedef}), or any other extension that people might have
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1366
  introduced elsewhere.
7806a74c54ac misc tuning and clarification;
wenzelm
parents: 57480
diff changeset
  1367
  \end{warn}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1368
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1369
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1370
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1371
subsection \<open>Constants and definitions \label{sec:consts}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1372
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1373
text \<open>
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1374
  \begin{matharray}{rcl}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1375
    @{command_def "consts"} & : & @{text "theory \<rightarrow> theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1376
    @{command_def "defs"} & : & @{text "theory \<rightarrow> theory"} \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1377
  \end{matharray}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1378
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1379
  Definitions essentially express abbreviations within the logic.  The
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1380
  simplest form of a definition is @{text "c :: \<sigma> \<equiv> t"}, where @{text
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1381
  c} is a newly declared constant.  Isabelle also allows derived forms
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1382
  where the arguments of @{text c} appear on the left, abbreviating a
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1383
  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
  1384
  written more conveniently as @{text "c x y \<equiv> t"}.  Moreover,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1385
  definitions may be weakened by adding arbitrary pre-conditions:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1386
  @{text "A \<Longrightarrow> c x y \<equiv> t"}.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1387
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1388
  \<^medskip>
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1389
  The built-in well-formedness conditions for definitional
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1390
  specifications are:
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1391
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1392
  \begin{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1393
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1394
  \<^item> Arguments (on the left-hand side) must be distinct variables.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1395
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1396
  \<^item> All variables on the right-hand side must also appear on the
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1397
  left-hand side.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1398
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1399
  \<^item> All type variables on the right-hand side must also appear on
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1400
  the left-hand side; this prohibits @{text "0 :: nat \<equiv> length ([] ::
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1401
  \<alpha> list)"} for example.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1402
61421
e0825405d398 more symbols;
wenzelm
parents: 61420
diff changeset
  1403
  \<^item> The definition must not be recursive.  Most object-logics
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1404
  provide definitional principles that can be used to express
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1405
  recursion safely.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1406
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1407
  \end{itemize}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1408
31047
c13b0406c039 tuned description of overloading
haftmann
parents: 30546
diff changeset
  1409
  The right-hand side of overloaded definitions may mention overloaded constants
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1410
  recursively at type instances corresponding to the immediate
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1411
  argument types @{text "\<beta>\<^sub>1, \<dots>, \<beta>\<^sub>n"}.  Incomplete
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1412
  specification patterns impose global constraints on all occurrences,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1413
  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
  1414
  corresponding occurrences on some right-hand side need to be an
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1415
  instance of this, general @{text "d :: \<alpha> \<times> \<beta>"} will be disallowed.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1416
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1417
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1418
    @@{command consts} ((@{syntax name} '::' @{syntax type} @{syntax mixfix}?) +)
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1419
    ;
42704
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1420
    @@{command defs} opt? (@{syntax axmdecl} @{syntax prop} +)
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1421
    ;
3f19e324ff59 tuned rail diagrams and layout;
wenzelm
parents: 42651
diff changeset
  1422
    opt: '(' @'unchecked'? @'overloaded'? ')'
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1423
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1424
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1425
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1426
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1427
  \item @{command "consts"}~@{text "c :: \<sigma>"} declares constant @{text
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1428
  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
  1429
  mixfix annotations may attach concrete syntax to the constants
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1430
  declared.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1431
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1432
  \item @{command "defs"}~@{text "name: eqn"} introduces @{text eqn}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1433
  as a definitional axiom for some existing constant.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1434
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1435
  The @{text "(unchecked)"} option disables global dependency checks
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1436
  for this definition, which is occasionally useful for exotic
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1437
  overloading.  It is at the discretion of the user to avoid malformed
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1438
  theory specifications!
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1439
  
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1440
  The @{text "(overloaded)"} option declares definitions to be
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1441
  potentially overloaded.  Unless this option is given, a warning
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1442
  message would be issued for any definitional equation with a more
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1443
  special type than that of the corresponding constant declaration.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1444
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1445
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1446
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1447
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1448
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1449
section \<open>Naming existing theorems \label{sec:theorems}\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1450
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1451
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1452
  \begin{matharray}{rcll}
28761
9ec4482c9201 updated/refined types of Isar language elements, removed special LaTeX macros;
wenzelm
parents: 28760
diff changeset
  1453
    @{command_def "lemmas"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
57946
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1454
    @{command_def "named_theorems"} & : & @{text "local_theory \<rightarrow> local_theory"} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1455
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1456
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1457
  @{rail \<open>
61337
4645502c3c64 fewer aliases for toplevel theorem statements;
wenzelm
parents: 60297
diff changeset
  1458
    @@{command lemmas} (@{syntax thmdef}? @{syntax thmrefs} + @'and')
59785
4e6ab5831cc0 clarified syntax category "fixes";
wenzelm
parents: 59783
diff changeset
  1459
      @{syntax for_fixes}
57946
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1460
    ;
59785
4e6ab5831cc0 clarified syntax category "fixes";
wenzelm
parents: 59783
diff changeset
  1461
    @@{command named_theorems} (@{syntax name} @{syntax text}? + @'and')
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1462
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1463
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1464
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1465
  
45600
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1466
  \item @{command "lemmas"}~@{text "a = b\<^sub>1 \<dots> b\<^sub>n"}~@{keyword_def
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1467
  "for"}~@{text "x\<^sub>1 \<dots> x\<^sub>m"} evaluates given facts (with attributes) in
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1468
  the current context, which may be augmented by local variables.
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1469
  Results are standardized before being stored, i.e.\ schematic
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1470
  variables are renamed to enforce index @{text "0"} uniformly.
1bbbac9a0cb0 'lemmas' / 'theorems' commands allow 'for' fixes and standardize the result before storing;
wenzelm
parents: 42936
diff changeset
  1471
57946
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1472
  \item @{command "named_theorems"}~@{text "name description"} declares a
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1473
  dynamic fact within the context. The same @{text name} is used to define
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1474
  an attribute with the usual @{text add}/@{text del} syntax (e.g.\ see
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1475
  \secref{sec:simp-rules}) to maintain the content incrementally, in
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1476
  canonical declaration order of the text structure.
6a26aa5fa65e updated documentation concerning 'named_theorems';
wenzelm
parents: 57941
diff changeset
  1477
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1478
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1479
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1480
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1481
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1482
section \<open>Oracles\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1483
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1484
text \<open>
47483
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1485
  \begin{matharray}{rcll}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1486
    @{command_def "oracle"} & : & @{text "theory \<rightarrow> theory"} & (axiomatic!) \\
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1487
  \end{matharray}
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1488
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1489
  Oracles allow Isabelle to take advantage of external reasoners such
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1490
  as arithmetic decision procedures, model checkers, fast tautology
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1491
  checkers or computer algebra systems.  Invoked as an oracle, an
3f704717a67f more uniform outline;
wenzelm
parents: 47482
diff changeset
  1492
  external reasoner can create arbitrary Isabelle theorems.
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1493
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1494
  It is the responsibility of the user to ensure that the external
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1495
  reasoner is as trustworthy as the application requires.  Another
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1496
  typical source of errors is the linkup between Isabelle and the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1497
  external tool, not just its concrete implementation, but also the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1498
  required translation between two different logical environments.
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1499
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1500
  Isabelle merely guarantees well-formedness of the propositions being
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1501
  asserted, and records within the internal derivation object how
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1502
  presumed theorems depend on unproven suppositions.
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1503
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1504
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1505
    @@{command oracle} @{syntax name} '=' @{syntax text}
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1506
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1507
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1508
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1509
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1510
  \item @{command "oracle"}~@{text "name = text"} turns the given ML
28290
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28281
diff changeset
  1511
  expression @{text "text"} of type @{ML_text "'a -> cterm"} into an
4cc2b6046258 simplified oracle interface;
wenzelm
parents: 28281
diff changeset
  1512
  ML function of type @{ML_text "'a -> thm"}, which is bound to the
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1513
  global identifier @{ML_text name}.  This acts like an infinitary
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1514
  specification of axioms!  Invoking the oracle only works within the
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1515
  scope of the resulting theory.
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1516
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1517
  \end{description}
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1518
40800
330eb65c9469 Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents: 40784
diff changeset
  1519
  See @{file "~~/src/HOL/ex/Iff_Oracle.thy"} for a worked example of
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1520
  defining a new primitive rule as oracle, and turning it into a proof
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1521
  method.
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1522
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1523
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1524
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1525
section \<open>Name spaces\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1526
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1527
text \<open>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1528
  \begin{matharray}{rcl}
36177
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1529
    @{command_def "hide_class"} & : & @{text "theory \<rightarrow> theory"} \\
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1530
    @{command_def "hide_type"} & : & @{text "theory \<rightarrow> theory"} \\
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1531
    @{command_def "hide_const"} & : & @{text "theory \<rightarrow> theory"} \\
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1532
    @{command_def "hide_fact"} & : & @{text "theory \<rightarrow> theory"} \\
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1533
  \end{matharray}
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1534
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1535
  @{rail \<open>
42596
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1536
    ( @{command hide_class} | @{command hide_type} |
6c621a9d612a modernized rail diagrams using @{rail} antiquotation;
wenzelm
parents: 41435
diff changeset
  1537
      @{command hide_const} | @{command hide_fact} ) ('(' @'open' ')')? (@{syntax nameref} + )
55112
b1a5d603fd12 prefer rail cartouche -- avoid back-slashed quotes;
wenzelm
parents: 55029
diff changeset
  1538
  \<close>}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1539
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1540
  Isabelle organizes any kind of name declarations (of types,
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1541
  constants, theorems etc.) by separate hierarchically structured name
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1542
  spaces.  Normally the user does not have to control the behavior of
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1543
  name spaces by hand, yet the following commands provide some way to
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1544
  do so.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1545
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1546
  \begin{description}
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1547
36177
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1548
  \item @{command "hide_class"}~@{text names} fully removes class
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1549
  declarations from a given name space; with the @{text "(open)"}
60297
wenzelm
parents: 60093
diff changeset
  1550
  option, only the unqualified base name is hidden.
36177
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1551
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1552
  Note that hiding name space accesses has no impact on logical
28756
529798e71924 tuned section "Oracles";
wenzelm
parents: 28745
diff changeset
  1553
  declarations --- they remain valid internally.  Entities that are no
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1554
  longer accessible to the user are printed with the special qualifier
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1555
  ``@{text "??"}'' prefixed to the full internal name.
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1556
36177
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1557
  \item @{command "hide_type"}, @{command "hide_const"}, and @{command
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1558
  "hide_fact"} are similar to @{command "hide_class"}, but hide types,
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1559
  constants, and facts, respectively.
8e0770d2e499 separate commands 'hide_class', 'hide_type', 'hide_const', 'hide_fact';
wenzelm
parents: 35681
diff changeset
  1560
  
28760
cbc435f7b16b unified use of declaration environment with IsarImplementation;
wenzelm
parents: 28758
diff changeset
  1561
  \end{description}
58618
782f0b662cae more cartouches;
wenzelm
parents: 58552
diff changeset
  1562
\<close>
27040
3d3e6e07b931 major reorganization of document structure;
wenzelm
parents: 26870
diff changeset
  1563
26869
3bc332135aa7 added chapters for "Specifications" and "Proofs";
wenzelm
parents:
diff changeset
  1564
end