ProgTutorial/Essential.thy
author Christian Urban <urbanc@in.tum.de>
Fri, 22 Jun 2012 19:55:20 +0100
changeset 534 0760fdf56942
parent 533 3f85b675601c
child 535 5734ab5dd86d
permissions -rw-r--r--
tuned
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
395
2c392f61f400 spilt the Essential's chapter
Christian Urban <urbanc@in.tum.de>
parents: 394
diff changeset
     1
theory Essential
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
     2
imports Base First_Steps
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
begin
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
     5
chapter {* Isabelle Essentials *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     6
319
6bce4acf7f2a added file for producing a keyword file
Christian Urban <urbanc@in.tum.de>
parents: 318
diff changeset
     7
text {*
410
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
     8
   \begin{flushright}
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
     9
  {\em One man's obfuscation is another man's abstraction.} \\[1ex]
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
    10
  Frank Ch.~Eigler on the Linux Kernel Mailing List,\\ 
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
    11
  24~Nov.~2009
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
    12
  \end{flushright}
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
    13
Christian Urban <urbanc@in.tum.de>
parents: 409
diff changeset
    14
  \medskip
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    15
  Isabelle is built around a few central ideas. One central idea is the
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
    16
  LCF-approach to theorem proving \cite{GordonMilnerWadsworth79} where there
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
    17
  is a small trusted core and everything else is built on top of this trusted
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
    18
  core. The fundamental data structures involved in this core are certified
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
    19
  terms and certified types, as well as theorems.
319
6bce4acf7f2a added file for producing a keyword file
Christian Urban <urbanc@in.tum.de>
parents: 318
diff changeset
    20
*}
6bce4acf7f2a added file for producing a keyword file
Christian Urban <urbanc@in.tum.de>
parents: 318
diff changeset
    21
6bce4acf7f2a added file for producing a keyword file
Christian Urban <urbanc@in.tum.de>
parents: 318
diff changeset
    22
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    23
section {* Terms and Types *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    24
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    25
text {*
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
    26
  In Isabelle, there are certified terms and uncertified terms (respectively types). 
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
    27
  Uncertified terms are often just called terms. One way to construct them is by 
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
    28
  using the antiquotation \mbox{@{text "@{term \<dots>}"}}. For example
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    29
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
  @{ML_response [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    31
"@{term \"(a::nat) + b = c\"}" 
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
    32
"Const (\"HOL.eq\", \<dots>) $ 
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
    33
  (Const (\"Groups.plus_class.plus\", \<dots>) $ \<dots> $ \<dots>) $ \<dots>"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    34
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
    35
  constructs the term @{term "(a::nat) + b = c"}. The resulting term is printed using 
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
    36
  the internal representation corresponding to the datatype @{ML_type_ind "term"}, 
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
    37
  which is defined as follows: 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
*}  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    40
ML_val %linenosgray{*datatype term =
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
  Const of string * typ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
| Free of string * typ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
| Var of indexname * typ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    44
| Bound of int 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    45
| Abs of string * typ * term 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
| $ of term * term *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    47
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
text {*
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
    49
  This datatype implements Church-style lambda-terms, where types are
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    50
  explicitly recorded in variables, constants and abstractions.  The
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    51
  important point of having terms is that you can pattern-match against them;
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    52
  this cannot be done with certified terms. As can be seen in Line 5,
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    53
  terms use the usual de Bruijn index mechanism for representing bound
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    54
  variables.  For example in
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    56
  @{ML_response_fake [display, gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    57
  "@{term \"\<lambda>x y. x y\"}"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
  "Abs (\"x\", \"'a \<Rightarrow> 'b\", Abs (\"y\", \"'a\", Bound 1 $ Bound 0))"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    59
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
  the indices refer to the number of Abstractions (@{ML Abs}) that we need to
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
  skip until we hit the @{ML Abs} that binds the corresponding
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    62
  variable. Constructing a term with dangling de Bruijn indices is possible,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    63
  but will be flagged as ill-formed when you try to typecheck or certify it
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    64
  (see Section~\ref{sec:typechecking}). Note that the names of bound variables
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    65
  are kept at abstractions for printing purposes, and so should be treated
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    66
  only as ``comments''.  Application in Isabelle is realised with the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
  term-constructor @{ML $}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    69
  Be careful if you pretty-print terms. Consider pretty-printing the abstraction
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    70
  term shown above:
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    71
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    72
  @{ML_response_fake [display, gray]
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    73
"@{term \"\<lambda>x y. x y\"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    74
  |> pretty_term @{context}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    75
  |> pwriteln"
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    76
  "\<lambda>x. x"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    77
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    78
  This is one common source for puzzlement in Isabelle, which has 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    79
  tacitly eta-contracted the output. You obtain a similar result 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    80
  with beta-redexes
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    81
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    82
  @{ML_response_fake [display, gray]
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    83
"let 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    84
  val redex = @{term \"(\<lambda>(x::int) (y::int). x)\"} 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    85
  val arg1 = @{term \"1::int\"} 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    86
  val arg2 = @{term \"2::int\"}
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    87
in
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    88
  pretty_term @{context} (redex $ arg1 $ arg2)
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    89
  |> pwriteln
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    90
end"
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    91
  "1"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
    92
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    93
  There is a dedicated configuration value for switching off tacit
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    94
  eta-contractions, namely @{ML_ind eta_contract in Syntax} (see Section
507
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
    95
  \ref{sec:printing}), but none for beta-contractions. However you can avoid
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
    96
  the beta-contractions by switching off abbreviations using the configuration
507
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
    97
  value @{ML_ind show_abbrevs in Syntax}. For example
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
    98
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
    99
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
   100
  @{ML_response_fake [display, gray]
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   101
  "let 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   102
  val redex = @{term \"(\<lambda>(x::int) (y::int). x)\"} 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   103
  val arg1 = @{term \"1::int\"} 
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   104
  val arg2 = @{term \"2::int\"}
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   105
  val ctxt = Config.put show_abbrevs false @{context}
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   106
in
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   107
  pretty_term ctxt (redex $ arg1 $ arg2)
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   108
  |> pwriteln
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   109
end"
507
d770a7b31aeb modified the passage on beta-contractions
Christian Urban <urbanc@in.tum.de>
parents: 505
diff changeset
   110
  "(\<lambda>x y. x) 1 2"}
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   111
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
  Isabelle makes a distinction between \emph{free} variables (term-constructor
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   113
  @{ML Free} and written on the user level in blue colour) and
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   114
  \emph{schematic} variables (term-constructor @{ML Var} and written with a
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   115
  leading question mark). Consider the following two examples
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
  @{ML_response_fake [display, gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   118
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
  val v1 = Var ((\"x\", 3), @{typ bool})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   120
  val v2 = Var ((\"x1\", 3), @{typ bool})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
  val v3 = Free (\"x\", @{typ bool})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
in
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   123
  pretty_terms @{context} [v1, v2, v3]
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   124
  |> pwriteln
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   125
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
"?x3, ?x1.3, x"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   127
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   128
  When constructing terms, you are usually concerned with free
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   129
  variables (as mentioned earlier, you cannot construct schematic
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   130
  variables using the built in antiquotation \mbox{@{text "@{term
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   131
  \<dots>}"}}). If you deal with theorems, you have to, however, observe the
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   132
  distinction. The reason is that only schematic variables can be
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   133
  instantiated with terms when a theorem is applied. A similar
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
   134
  distinction between free and schematic variables holds for types
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   135
  (see below).
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   136
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   137
  \begin{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   138
  Terms and types are described in detail in \isccite{sec:terms}. Their
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   139
  definition and many useful operations are implemented in @{ML_file "Pure/term.ML"}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   140
  For constructing terms involving HOL constants, many helper functions are defined
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   141
  in @{ML_file "HOL/Tools/hologic.ML"}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   142
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   143
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   144
  Constructing terms via antiquotations has the advantage that only typable
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
  terms can be constructed. For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   147
  @{ML_response_fake_both [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
  "@{term \"x x\"}"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
  "Type unification failed: Occurs check!"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   151
  raises a typing error, while it perfectly ok to construct the term
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   152
  with the raw ML-constructors:
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   153
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   154
  @{ML_response_fake [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   155
"let
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   156
  val omega = Free (\"x\", @{typ \"nat \<Rightarrow> nat\"}) $ Free (\"x\", @{typ nat})
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   157
in 
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   158
  pwriteln (pretty_term @{context} omega)
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
  "x x"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   161
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   162
  Sometimes the internal representation of terms can be surprisingly different
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
  from what you see at the user-level, because the layers of
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   164
  parsing/type-checking/pretty printing can be quite elaborate. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   165
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   166
  \begin{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   167
  Look at the internal term representation of the following terms, and
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   168
  find out why they are represented like this:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   169
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   170
  \begin{itemize}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
  \item @{term "case x of 0 \<Rightarrow> 0 | Suc y \<Rightarrow> y"}  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
  \item @{term "\<lambda>(x,y). P y x"}  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173
  \item @{term "{ [x::int] | x. x \<le> -2 }"}  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   174
  \end{itemize}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   175
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   176
  Hint: The third term is already quite big, and the pretty printer
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   177
  may omit parts of it by default. If you want to see all of it, you
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   178
  can use the following ML-function to set the printing depth to a higher 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   179
  value:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   180
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   181
  @{ML [display,gray] "print_depth 50"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   182
  \end{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   183
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   184
  The antiquotation @{text "@{prop \<dots>}"} constructs terms by inserting the 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   185
  usually invisible @{text "Trueprop"}-coercions whenever necessary. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   186
  Consider for example the pairs
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   187
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   188
@{ML_response [display,gray] "(@{term \"P x\"}, @{prop \"P x\"})" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   189
"(Free (\"P\", \<dots>) $ Free (\"x\", \<dots>),
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   190
 Const (\"HOL.Trueprop\", \<dots>) $ (Free (\"P\", \<dots>) $ Free (\"x\", \<dots>)))"}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   191
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   192
  where a coercion is inserted in the second component and 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   193
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   194
  @{ML_response [display,gray] "(@{term \"P x \<Longrightarrow> Q x\"}, @{prop \"P x \<Longrightarrow> Q x\"})" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   195
  "(Const (\"==>\", \<dots>) $ \<dots> $ \<dots>, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   196
 Const (\"==>\", \<dots>) $ \<dots> $ \<dots>)"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   197
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   198
  where it is not (since it is already constructed by a meta-implication). 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   199
  The purpose of the @{text "Trueprop"}-coercion is to embed formulae of
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   200
  an object logic, for example HOL, into the meta-logic of Isabelle. The coercion
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   201
  is needed whenever a term is constructed that will be proved as a theorem. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   202
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   203
  As already seen above, types can be constructed using the antiquotation 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   204
  @{text "@{typ \<dots>}"}. For example:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   205
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   206
  @{ML_response_fake [display,gray] "@{typ \"bool \<Rightarrow> nat\"}" "bool \<Rightarrow> nat"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   207
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   208
  The corresponding datatype is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   209
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   210
  
534
Christian Urban <urbanc@in.tum.de>
parents: 533
diff changeset
   211
ML_val %grayML{*datatype typ =
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   212
  Type  of string * typ list 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   213
| TFree of string * sort 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   214
| TVar  of indexname * sort *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   215
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   216
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   217
  Like with terms, there is the distinction between free type
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   218
  variables (term-constructor @{ML "TFree"}) and schematic
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   219
  type variables (term-constructor @{ML "TVar"} and printed with
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   220
  a leading question mark). A type constant,
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   221
  like @{typ "int"} or @{typ bool}, are types with an empty list
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   222
  of argument types. However, it needs a bit of effort to show an
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   223
  example, because Isabelle always pretty prints types (unlike terms).
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   224
  Using just the antiquotation @{text "@{typ \"bool\"}"} we only see
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   225
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   226
  @{ML_response [display, gray]
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   227
  "@{typ \"bool\"}"
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   228
  "bool"}
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   229
  which is the pretty printed version of @{text "bool"}. However, in PolyML
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   230
  (version @{text "\<ge>"}5.3) it is easy to install your own pretty printer. With the
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   231
  function below we mimic the behaviour of the usual pretty printer for
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   232
  datatypes (it uses pretty-printing functions which will be explained in more
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   233
  detail in Section~\ref{sec:pretty}).
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   234
*}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   235
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   236
ML %grayML{*local
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   237
  fun pp_pair (x, y) = Pretty.list "(" ")" [x, y]
392
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   238
  fun pp_list xs = Pretty.list "[" "]" xs
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   239
  fun pp_str s   = Pretty.str s
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   240
  fun pp_qstr s  = Pretty.quote (pp_str s)
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   241
  fun pp_int i   = pp_str (string_of_int i)
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   242
  fun pp_sort S  = pp_list (map pp_qstr S)
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   243
  fun pp_constr a args = Pretty.block [pp_str a, Pretty.brk 1, args]
392
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   244
in
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   245
fun raw_pp_typ (TVar ((a, i), S)) = 
392
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   246
      pp_constr "TVar" (pp_pair (pp_pair (pp_qstr a, pp_int i), pp_sort S))
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   247
  | raw_pp_typ (TFree (a, S)) = 
392
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   248
      pp_constr "TFree" (pp_pair (pp_qstr a, pp_sort S))
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   249
  | raw_pp_typ (Type (a, tys)) = 
392
47e5b71c7f6c modified the typ-pretty-printer and added parser exercise
Christian Urban <urbanc@in.tum.de>
parents: 389
diff changeset
   250
      pp_constr "Type" (pp_pair (pp_qstr a, pp_list (map raw_pp_typ tys)))
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   251
end*}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   252
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   253
text {*
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   254
  We can install this pretty printer with the function 
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   255
  @{ML_ind addPrettyPrinter in PolyML} as follows.
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   256
*}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   257
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   258
ML %grayML{*PolyML.addPrettyPrinter 
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   259
  (fn _ => fn _ => ml_pretty o Pretty.to_ML o raw_pp_typ)*}
388
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
   260
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   261
text {*
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   262
  Now the type bool is printed out in full detail.
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   263
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   264
  @{ML_response [display,gray]
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   265
  "@{typ \"bool\"}"
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   266
  "Type (\"HOL.bool\", [])"}
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   267
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   268
  When printing out a list-type
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   269
  
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   270
  @{ML_response [display,gray]
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   271
  "@{typ \"'a list\"}"
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   272
  "Type (\"List.list\", [TFree (\"'a\", [\"HOL.type\"])])"}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   273
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   274
  we can see the full name of the type is actually @{text "List.list"}, indicating
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   275
  that it is defined in the theory @{text "List"}. However, one has to be 
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   276
  careful with names of types, because even if
482
Christian Urban <urbanc@in.tum.de>
parents: 481
diff changeset
   277
  @{text "fun"} is defined in the theory @{text "HOL"}, it is  
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   278
  still represented by their simple name.
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   279
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   280
   @{ML_response [display,gray]
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   281
  "@{typ \"bool \<Rightarrow> nat\"}"
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   282
  "Type (\"fun\", [Type (\"HOL.bool\", []), Type (\"Nat.nat\", [])])"}
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   283
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   284
  We can restore the usual behaviour of Isabelle's pretty printer
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   285
  with the code
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   286
*}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   287
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   288
ML %grayML{*PolyML.addPrettyPrinter 
393
Christian Urban <urbanc@in.tum.de>
parents: 392
diff changeset
   289
  (fn _ => fn _ => ml_pretty o Pretty.to_ML o Proof_Display.pp_typ Pure.thy)*}
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   290
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   291
text {*
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   292
  After that the types for booleans, lists and so on are printed out again 
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   293
  the standard Isabelle way.
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   294
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   295
  @{ML_response_fake [display, gray]
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   296
  "@{typ \"bool\"};
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   297
@{typ \"'a list\"}"
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   298
  "\"bool\"
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
   299
\"'a List.list\""}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   300
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   301
  \begin{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   302
  Types are described in detail in \isccite{sec:types}. Their
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   303
  definition and many useful operations are implemented 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   304
  in @{ML_file "Pure/type.ML"}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   305
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   306
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   307
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   308
section {* Constructing Terms and Types Manually\label{sec:terms_types_manually} *} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   309
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   310
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   311
  While antiquotations are very convenient for constructing terms, they can
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   312
  only construct fixed terms (remember they are ``linked'' at compile-time).
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
   313
  However, you often need to construct terms manually. For example, a
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   314
  function that returns the implication @{text "\<And>(x::nat). P x \<Longrightarrow> Q x"} taking
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   315
  @{term P} and @{term Q} as arguments can only be written as:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   316
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   317
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   318
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   319
ML %grayML{*fun make_imp P Q =
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   320
let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   321
  val x = Free ("x", @{typ nat})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   322
in 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   323
  Logic.all x (Logic.mk_implies (P $ x, Q $ x))
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   324
end *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   325
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   326
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   327
  The reason is that you cannot pass the arguments @{term P} and @{term Q} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   328
  into an antiquotation.\footnote{At least not at the moment.} For example 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   329
  the following does \emph{not} work.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   330
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   331
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   332
ML %grayML{*fun make_wrong_imp P Q = @{prop "\<And>(x::nat). P x \<Longrightarrow> Q x"} *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   333
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   334
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   335
  To see this, apply @{text "@{term S}"} and @{text "@{term T}"} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   336
  to both functions. With @{ML make_imp} you obtain the intended term involving 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   337
  the given arguments
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   338
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   339
  @{ML_response [display,gray] "make_imp @{term S} @{term T}" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   340
"Const \<dots> $ 
439
b83c75d051b7 updated for new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 435
diff changeset
   341
  Abs (\"x\", Type (\"Nat.nat\",[]),
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   342
    Const \<dots> $ (Free (\"S\",\<dots>) $ \<dots>) $ (Free (\"T\",\<dots>) $ \<dots>))"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   343
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   344
  whereas with @{ML make_wrong_imp} you obtain a term involving the @{term "P"} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   345
  and @{text "Q"} from the antiquotation.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   346
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   347
  @{ML_response [display,gray] "make_wrong_imp @{term S} @{term T}" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   348
"Const \<dots> $ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   349
  Abs (\"x\", \<dots>,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   350
    Const \<dots> $ (Const \<dots> $ (Free (\"P\",\<dots>) $ \<dots>)) $ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   351
                (Const \<dots> $ (Free (\"Q\",\<dots>) $ \<dots>)))"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   352
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   353
  There are a number of handy functions that are frequently used for
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   354
  constructing terms. One is the function @{ML_ind list_comb in Term}, which
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   355
  takes as argument a term and a list of terms, and produces as output the
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   356
  term list applied to the term. For example
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   357
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   358
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   359
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   360
"let
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   361
  val trm = @{term \"P::bool \<Rightarrow> bool \<Rightarrow> bool\"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   362
  val args = [@{term \"True\"}, @{term \"False\"}]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   363
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   364
  list_comb (trm, args)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   365
end"
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   366
"Free (\"P\", \"bool \<Rightarrow> bool \<Rightarrow> bool\") 
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   367
   $ Const (\"True\", \"bool\") $ Const (\"False\", \"bool\")"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   368
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   369
  Another handy function is @{ML_ind lambda in Term}, which abstracts a variable 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   370
  in a term. For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   371
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   372
  @{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   373
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   374
  val x_nat = @{term \"x::nat\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   375
  val trm = @{term \"(P::nat \<Rightarrow> bool) x\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   376
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   377
  lambda x_nat trm
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   378
end"
439
b83c75d051b7 updated for new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 435
diff changeset
   379
  "Abs (\"x\", \"Nat.nat\", Free (\"P\", \"bool \<Rightarrow> bool\") $ Bound 0)"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   380
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   381
  In this example, @{ML lambda} produces a de Bruijn index (i.e.~@{ML "Bound 0"}), 
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   382
  and an abstraction, where it also records the type of the abstracted
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   383
  variable and for printing purposes also its name.  Note that because of the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   384
  typing annotation on @{text "P"}, the variable @{text "x"} in @{text "P x"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   385
  is of the same type as the abstracted variable. If it is of different type,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   386
  as in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   387
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   388
  @{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   389
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   390
  val x_int = @{term \"x::int\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   391
  val trm = @{term \"(P::nat \<Rightarrow> bool) x\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   392
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   393
  lambda x_int trm
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   394
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   395
  "Abs (\"x\", \"int\", Free (\"P\", \"nat \<Rightarrow> bool\") $ Free (\"x\", \"nat\"))"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   396
482
Christian Urban <urbanc@in.tum.de>
parents: 481
diff changeset
   397
  then the variable @{text "Free (\"x\", \"nat\")"} is \emph{not} abstracted. 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   398
  This is a fundamental principle
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   399
  of Church-style typing, where variables with the same name still differ, if they 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   400
  have different type.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   401
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   402
  There is also the function @{ML_ind subst_free in Term} with which terms can be
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   403
  replaced by other terms. For example below, we will replace in @{term
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   404
  "(f::nat \<Rightarrow> nat \<Rightarrow> nat) 0 x"} the subterm @{term "(f::nat \<Rightarrow> nat \<Rightarrow> nat) 0"} by
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   405
  @{term y}, and @{term x} by @{term True}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   406
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   407
  @{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   408
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   409
  val sub1 = (@{term \"(f::nat \<Rightarrow> nat \<Rightarrow> nat) 0\"}, @{term \"y::nat \<Rightarrow> nat\"})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   410
  val sub2 = (@{term \"x::nat\"}, @{term \"True\"})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   411
  val trm = @{term \"((f::nat \<Rightarrow> nat \<Rightarrow> nat) 0) x\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   412
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   413
  subst_free [sub1, sub2] trm
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   414
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   415
  "Free (\"y\", \"nat \<Rightarrow> nat\") $ Const (\"True\", \"bool\")"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   416
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   417
  As can be seen, @{ML subst_free} does not take typability into account.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   418
  However it takes alpha-equivalence into account:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   419
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   420
  @{ML_response_fake [display, gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   421
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   422
  val sub = (@{term \"(\<lambda>y::nat. y)\"}, @{term \"x::nat\"})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   423
  val trm = @{term \"(\<lambda>x::nat. x)\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   424
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   425
  subst_free [sub] trm
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   426
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   427
  "Free (\"x\", \"nat\")"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   428
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   429
  Similarly the function @{ML_ind subst_bounds in Term}, replaces lose bound 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   430
  variables with terms. To see how this function works, let us implement a
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   431
  function that strips off the outermost forall quantifiers in a term.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   432
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   433
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   434
ML %grayML{*fun strip_alls t =
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   435
let 
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   436
  fun aux (x, T, t) = strip_alls t |>> cons (Free (x, T))
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   437
in
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   438
  case t of
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   439
    Const (@{const_name All}, _) $ Abs body => aux body
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   440
  | _ => ([], t)
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   441
end*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   442
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   443
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   444
  The function returns a pair consisting of the stripped off variables and
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   445
  the body of the universal quantification. For example
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   446
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   447
  @{ML_response_fake [display, gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   448
  "strip_alls @{term \"\<forall>x y. x = (y::bool)\"}"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   449
"([Free (\"x\", \"bool\"), Free (\"y\", \"bool\")],
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   450
  Const (\"op =\", \<dots>) $ Bound 1 $ Bound 0)"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   451
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   452
  Note that we produced in the body two dangling de Bruijn indices. 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   453
  Later on we will also use the inverse function that
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   454
  builds the quantification from a body and a list of (free) variables.
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   455
*}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   456
  
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   457
ML %grayML{*fun build_alls ([], t) = t
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   458
  | build_alls (Free (x, T) :: vs, t) = 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   459
      Const (@{const_name "All"}, (T --> @{typ bool}) --> @{typ bool}) 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   460
        $ Abs (x, T, build_alls (vs, t))*}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   461
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   462
text {*
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   463
  As said above, after calling @{ML strip_alls}, you obtain a term with loose
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   464
  bound variables. With the function @{ML subst_bounds}, you can replace these
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   465
  loose @{ML_ind Bound in Term}s with the stripped off variables.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   466
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   467
  @{ML_response_fake [display, gray, linenos]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   468
  "let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   469
  val (vrs, trm) = strip_alls @{term \"\<forall>x y. x = (y::bool)\"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   470
in 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   471
  subst_bounds (rev vrs, trm) 
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   472
  |> pretty_term @{context}
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   473
  |> pwriteln
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   474
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   475
  "x = y"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   476
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   477
  Note that in Line 4 we had to reverse the list of variables that @{ML
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   478
  strip_alls} returned. The reason is that the head of the list the function
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   479
  @{ML subst_bounds} takes is the replacement for @{ML "Bound 0"}, the next
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   480
  element for @{ML "Bound 1"} and so on. 
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   481
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   482
  Notice also that this function might introduce name clashes, since we
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   483
  substitute just a variable with the name recorded in an abstraction. This
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   484
  name is by no means unique. If clashes need to be avoided, then we should
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   485
  use the function @{ML_ind dest_abs in Term}, which returns the body where
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   486
  the loose de Bruijn index is replaced by a unique free variable. For example
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   487
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   488
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   489
  @{ML_response_fake [display,gray]
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   490
  "let
374
Christian Urban <urbanc@in.tum.de>
parents: 369
diff changeset
   491
  val body = Bound 0 $ Free (\"x\", @{typ nat})
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   492
in
374
Christian Urban <urbanc@in.tum.de>
parents: 369
diff changeset
   493
  Term.dest_abs (\"x\", @{typ \"nat \<Rightarrow> bool\"}, body)
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
   494
end"
439
b83c75d051b7 updated for new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 435
diff changeset
   495
  "(\"xa\", Free (\"xa\", \"Nat.nat \<Rightarrow> bool\") $ Free (\"x\", \"Nat.nat\"))"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   496
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   497
  Sometimes it is necessary to manipulate de Bruijn indices in terms directly.
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   498
  There are many functions to do this. We describe only two. The first,
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   499
  @{ML_ind incr_boundvars in Term}, increases by an integer the indices 
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   500
  of the loose bound variables in a term. In the code below
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   501
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   502
@{ML_response_fake [display,gray]
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   503
"@{term \"\<forall>x y z u. z = u\"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   504
  |> strip_alls
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   505
  ||> incr_boundvars 2
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   506
  |> build_alls
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   507
  |> pretty_term @{context}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   508
  |> pwriteln"
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   509
  "\<forall>x y z u. x = y"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   510
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   511
  we first strip off the forall-quantified variables (thus creating two loose
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   512
  bound variables in the body); then we increase the indices of the loose
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   513
  bound variables by @{ML 2} and finally re-quantify the variables. As a
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   514
  result of @{ML incr_boundvars}, we obtain now a term that has the equation
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   515
  between the first two quantified variables.
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   516
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   517
  The second function, @{ML_ind loose_bvar1 in Text}, tests whether a term
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   518
  contains a loose bound of a certain index. For example
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   519
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   520
  @{ML_response_fake [gray,display]
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   521
"let
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   522
  val body = snd (strip_alls @{term \"\<forall>x y. x = (y::bool)\"})
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   523
in
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   524
  [loose_bvar1 (body, 0),
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   525
   loose_bvar1 (body, 1),
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   526
   loose_bvar1 (body, 2)]
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   527
end"
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   528
  "[true, true, false]"}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   529
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   530
  There are also many convenient functions that construct specific HOL-terms
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   531
  in the structure @{ML_struct HOLogic}. For example @{ML_ind mk_eq in
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   532
  HOLogic} constructs an equality out of two terms.  The types needed in this
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   533
  equality are calculated from the type of the arguments. For example
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   534
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   535
@{ML_response_fake [gray,display]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   536
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   537
  val eq = HOLogic.mk_eq (@{term \"True\"}, @{term \"False\"})
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   538
in
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   539
  eq |> pretty_term @{context}
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   540
     |> pwriteln
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   541
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   542
  "True = False"}
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   543
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   544
  \begin{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   545
  There are many functions in @{ML_file "Pure/term.ML"}, @{ML_file
374
Christian Urban <urbanc@in.tum.de>
parents: 369
diff changeset
   546
  "Pure/logic.ML"} and @{ML_file "HOL/Tools/hologic.ML"} that make manual
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   547
  constructions of terms and types easier.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   548
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   549
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   550
  When constructing terms manually, there are a few subtle issues with
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   551
  constants. They usually crop up when pattern matching terms or types, or
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   552
  when constructing them. While it is perfectly ok to write the function
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   553
  @{text is_true} as follows
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   554
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   555
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   556
ML %grayML{*fun is_true @{term True} = true
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   557
  | is_true _ = false*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   558
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   559
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   560
  this does not work for picking out @{text "\<forall>"}-quantified terms. Because
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   561
  the function 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   562
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   563
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   564
ML %grayML{*fun is_all (@{term All} $ _) = true
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   565
  | is_all _ = false*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   566
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   567
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   568
  will not correctly match the formula @{prop[source] "\<forall>x::nat. P x"}: 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   569
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   570
  @{ML_response [display,gray] "is_all @{term \"\<forall>x::nat. P x\"}" "false"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   571
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   572
  The problem is that the @{text "@term"}-antiquotation in the pattern 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   573
  fixes the type of the constant @{term "All"} to be @{typ "('a \<Rightarrow> bool) \<Rightarrow> bool"} for 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   574
  an arbitrary, but fixed type @{typ "'a"}. A properly working alternative 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   575
  for this function is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   576
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   577
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   578
ML %grayML{*fun is_all (Const ("HOL.All", _) $ _) = true
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   579
  | is_all _ = false*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   580
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   581
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   582
  because now
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   583
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   584
  @{ML_response [display,gray] "is_all @{term \"\<forall>x::nat. P x\"}" "true"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   585
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   586
  matches correctly (the first wildcard in the pattern matches any type and the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   587
  second any term).
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   588
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   589
  However there is still a problem: consider the similar function that
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   590
  attempts to pick out @{text "Nil"}-terms:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   591
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   592
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   593
ML %grayML{*fun is_nil (Const ("Nil", _)) = true
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   594
  | is_nil _ = false *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   595
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   596
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   597
  Unfortunately, also this function does \emph{not} work as expected, since
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   598
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   599
  @{ML_response [display,gray] "is_nil @{term \"Nil\"}" "false"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   600
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   601
  The problem is that on the ML-level the name of a constant is more
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   602
  subtle than you might expect. The function @{ML is_all} worked correctly,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   603
  because @{term "All"} is such a fundamental constant, which can be referenced
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   604
  by @{ML "Const (\"All\", some_type)" for some_type}. However, if you look at
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   605
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   606
  @{ML_response [display,gray] "@{term \"Nil\"}" "Const (\"List.list.Nil\", \<dots>)"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   607
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   608
  the name of the constant @{text "Nil"} depends on the theory in which the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   609
  term constructor is defined (@{text "List"}) and also in which datatype
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   610
  (@{text "list"}). Even worse, some constants have a name involving
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   611
  type-classes. Consider for example the constants for @{term "zero"} and
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   612
  \mbox{@{text "(op *)"}}:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   613
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   614
  @{ML_response [display,gray] "(@{term \"0::nat\"}, @{term \"(op *)\"})" 
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
   615
 "(Const (\"Groups.zero_class.zero\", \<dots>), 
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
   616
 Const (\"Groups.times_class.times\", \<dots>))"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   617
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   618
  While you could use the complete name, for example 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   619
  @{ML "Const (\"List.list.Nil\", some_type)" for some_type}, for referring to or
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   620
  matching against @{text "Nil"}, this would make the code rather brittle. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   621
  The reason is that the theory and the name of the datatype can easily change. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   622
  To make the code more robust, it is better to use the antiquotation 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   623
  @{text "@{const_name \<dots>}"}. With this antiquotation you can harness the 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   624
  variable parts of the constant's name. Therefore a function for 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   625
  matching against constants that have a polymorphic type should 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   626
  be written as follows.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   627
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   628
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   629
ML %grayML{*fun is_nil_or_all (Const (@{const_name "Nil"}, _)) = true
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   630
  | is_nil_or_all (Const (@{const_name "All"}, _) $ _) = true
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   631
  | is_nil_or_all _ = false *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   632
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   633
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   634
  The antiquotation for properly referencing type constants is @{text "@{type_name \<dots>}"}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   635
  For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   636
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   637
  @{ML_response [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   638
  "@{type_name \"list\"}" "\"List.list\""}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   639
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   640
  Although types of terms can often be inferred, there are many
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   641
  situations where you need to construct types manually, especially  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   642
  when defining constants. For example the function returning a function 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   643
  type is as follows:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   644
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   645
*} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   646
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   647
ML %grayML{*fun make_fun_type ty1 ty2 = Type ("fun", [ty1, ty2]) *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   648
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   649
text {* This can be equally written with the combinator @{ML_ind "-->" in Term} as: *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   650
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   651
ML %grayML{*fun make_fun_type ty1 ty2 = ty1 --> ty2 *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   652
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   653
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   654
  If you want to construct a function type with more than one argument
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
   655
  type, then you can use @{ML_ind "--->" in Term}.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   656
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   657
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   658
ML %grayML{*fun make_fun_types tys ty = tys ---> ty *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   659
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   660
text {*
369
74ba778b09c9 tuned index
Christian Urban <urbanc@in.tum.de>
parents: 368
diff changeset
   661
  A handy function for manipulating terms is @{ML_ind map_types in Term}: it takes a 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   662
  function and applies it to every type in a term. You can, for example,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   663
  change every @{typ nat} in a term into an @{typ int} using the function:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   664
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   665
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   666
ML %grayML{*fun nat_to_int ty =
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   667
  (case ty of
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   668
     @{typ nat} => @{typ int}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   669
   | Type (s, tys) => Type (s, map nat_to_int tys)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   670
   | _ => ty)*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   671
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   672
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   673
  Here is an example:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   674
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   675
@{ML_response_fake [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   676
"map_types nat_to_int @{term \"a = (1::nat)\"}" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   677
"Const (\"op =\", \"int \<Rightarrow> int \<Rightarrow> bool\")
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   678
           $ Free (\"a\", \"int\") $ Const (\"HOL.one_class.one\", \"int\")"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   679
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   680
  If you want to obtain the list of free type-variables of a term, you
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   681
  can use the function @{ML_ind  add_tfrees in Term} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   682
  (similarly @{ML_ind  add_tvars in Term} for the schematic type-variables). 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   683
  One would expect that such functions
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   684
  take a term as input and return a list of types. But their type is actually 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   685
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   686
  @{text[display] "Term.term -> (string * Term.sort) list -> (string * Term.sort) list"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   687
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   688
  that is they take, besides a term, also a list of type-variables as input. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   689
  So in order to obtain the list of type-variables of a term you have to 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   690
  call them as follows
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   691
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   692
  @{ML_response [gray,display]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   693
  "Term.add_tfrees @{term \"(a, b)\"} []"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   694
  "[(\"'b\", [\"HOL.type\"]), (\"'a\", [\"HOL.type\"])]"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   695
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   696
  The reason for this definition is that @{ML add_tfrees in Term} can
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   697
  be easily folded over a list of terms. Similarly for all functions
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   698
  named @{text "add_*"} in @{ML_file "Pure/term.ML"}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   699
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   700
  \begin{exercise}\label{fun:revsum}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   701
  Write a function @{text "rev_sum : term -> term"} that takes a
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   702
  term of the form @{text "t\<^isub>1 + t\<^isub>2 + \<dots> + t\<^isub>n"} (whereby @{text "n"} might be one)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   703
  and returns the reversed sum @{text "t\<^isub>n + \<dots> + t\<^isub>2 + t\<^isub>1"}. Assume
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   704
  the @{text "t\<^isub>i"} can be arbitrary expressions and also note that @{text "+"} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   705
  associates to the left. Try your function on some examples. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   706
  \end{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   707
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   708
  \begin{exercise}\label{fun:makesum}
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   709
  Write a function that takes two terms representing natural numbers
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   710
  in unary notation (like @{term "Suc (Suc (Suc 0))"}), and produces the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   711
  number representing their sum.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   712
  \end{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   713
469
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   714
  \begin{exercise}\label{fun:killqnt}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   715
  Write a function that removes trivial forall and exists quantifiers that do not
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   716
  quantify over any variables.  For example the term @{term "\<forall>x y z. P x = P
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   717
  z"} should be transformed to @{term "\<forall>x z. P x = P z"}, deleting the
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   718
  quantification @{term "y"}. Hint: use the functions @{ML incr_boundvars}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   719
  and @{ML loose_bvar1}.
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   720
  \end{exercise}
7a558c5119b2 added an excercise originally by Jasmin Blanchette
Christian Urban <urbanc@in.tum.de>
parents: 465
diff changeset
   721
446
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   722
  \begin{exercise}\label{fun:makelist}
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   723
  Write a function that takes an integer @{text i} and
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   724
  produces an Isabelle integer list from @{text 1} upto @{text i}, 
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   725
  and then builds the reverse of this list using @{const rev}. 
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   726
  The relevant helper functions are @{ML upto}, 
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   727
  @{ML HOLogic.mk_number} and @{ML HOLogic.mk_list}.
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   728
  \end{exercise}
4c32349b9875 added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents: 441
diff changeset
   729
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   730
  \begin{exercise}\label{ex:debruijn}
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   731
  Implement the function, which we below name deBruijn, that depends on a natural
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   732
  number n$>$0 and constructs terms of the form:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   733
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   734
  \begin{center}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   735
  \begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   736
  {\it rhs n} & $\dn$ & {\large$\bigwedge$}{\it i=1\ldots n.  P\,i}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   737
  {\it lhs n} & $\dn$ & {\large$\bigwedge$}{\it i=1\ldots n. P\,i = P (i + 1 mod n)}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   738
                        $\longrightarrow$ {\it rhs n}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   739
  {\it deBruijn n} & $\dn$ & {\it lhs n} $\longrightarrow$ {\it rhs n}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   740
  \end{tabular}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   741
  \end{center}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   742
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
   743
  This function returns for n=3 the term
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   744
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   745
  \begin{center}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   746
  \begin{tabular}{l}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   747
  (P 1 = P 2 $\longrightarrow$ P 1 $\wedge$ P 2 $\wedge$ P 3) $\wedge$\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   748
  (P 2 = P 3 $\longrightarrow$ P 1 $\wedge$ P 2 $\wedge$ P 3) $\wedge$\\ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   749
  (P 3 = P 1 $\longrightarrow$ P 1 $\wedge$ P 2 $\wedge$ P 3) $\longrightarrow$ P 1 $\wedge$ P 2 $\wedge$ P 3
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   750
  \end{tabular}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   751
  \end{center}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   752
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   753
  Make sure you use the functions defined in @{ML_file "HOL/Tools/hologic.ML"}
350
364fffa80794 polished
Christian Urban <urbanc@in.tum.de>
parents: 349
diff changeset
   754
  for constructing the terms for the logical connectives.\footnote{Thanks to Roy
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
   755
  Dyckhoff for suggesting this exercise and working out the details.} 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   756
  \end{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   757
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   758
412
73f716b9201a polised
Christian Urban <urbanc@in.tum.de>
parents: 410
diff changeset
   759
section {* Unification and Matching\label{sec:univ} *}
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   760
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   761
text {* 
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   762
  As seen earlier, Isabelle's terms and types may contain schematic term variables
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   763
  (term-constructor @{ML Var}) and schematic type variables (term-constructor
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   764
  @{ML TVar}). These variables stand for unknown entities, which can be made
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   765
  more concrete by instantiations. Such instantiations might be a result of
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   766
  unification or matching. While in case of types, unification and matching is
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   767
  relatively straightforward, in case of terms the algorithms are
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   768
  substantially more complicated, because terms need higher-order versions of
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   769
  the unification and matching algorithms. Below we shall use the
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   770
  antiquotations @{text "@{typ_pat \<dots>}"} and @{text "@{term_pat \<dots>}"} from
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   771
  Section~\ref{sec:antiquote} in order to construct examples involving
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   772
  schematic variables.
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   773
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
   774
  Let us begin with describing the unification and matching functions for
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   775
  types.  Both return type environments (ML-type @{ML_type "Type.tyenv"})
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   776
  which map schematic type variables to types and sorts. Below we use the
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   777
  function @{ML_ind typ_unify in Sign} from the structure @{ML_struct Sign}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   778
  for unifying the types @{text "?'a * ?'b"} and @{text "?'b list *
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   779
  nat"}. This will produce the mapping, or type environment, @{text "[?'a :=
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   780
  ?'b list, ?'b := nat]"}.
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   781
*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   782
382
Christian Urban <urbanc@in.tum.de>
parents: 381
diff changeset
   783
ML %linenosgray{*val (tyenv_unif, _) = let
379
Christian Urban <urbanc@in.tum.de>
parents: 378
diff changeset
   784
  val ty1 = @{typ_pat "?'a * ?'b"}
Christian Urban <urbanc@in.tum.de>
parents: 378
diff changeset
   785
  val ty2 = @{typ_pat "?'b list * nat"}
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   786
in
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   787
  Sign.typ_unify @{theory} (ty1, ty2) (Vartab.empty, 0) 
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   788
end*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   789
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   790
text {* 
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   791
  The environment @{ML_ind "Vartab.empty"} in line 5 stands for the empty type
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   792
  environment, which is needed for starting the unification without any
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   793
  (pre)instantiations. The @{text 0} is an integer index that will be explained
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
   794
  below. In case of failure, @{ML typ_unify in Sign} will throw the exception
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   795
  @{text TUNIFY}.  We can print out the resulting type environment bound to 
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   796
  @{ML tyenv_unif} with the built-in function @{ML_ind dest in Vartab} from the
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   797
  structure @{ML_struct Vartab}.
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   798
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   799
  @{ML_response_fake [display,gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   800
  "Vartab.dest tyenv_unif"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   801
  "[((\"'a\", 0), ([\"HOL.type\"], \"?'b List.list\")), 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   802
 ((\"'b\", 0), ([\"HOL.type\"], \"nat\"))]"} 
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   803
*}
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   804
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   805
text_raw {*
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   806
  \begin{figure}[t]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   807
  \begin{minipage}{\textwidth}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   808
  \begin{isabelle}*}
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   809
ML %grayML{*fun pretty_helper aux env =
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   810
  env |> Vartab.dest  
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   811
      |> map aux
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   812
      |> map (fn (s1, s2) => Pretty.block [s1, Pretty.str " := ", s2]) 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
   813
      |> Pretty.enum "," "[" "]" 
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   814
      |> pwriteln
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   815
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   816
fun pretty_tyenv ctxt tyenv =
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   817
let
389
Christian Urban <urbanc@in.tum.de>
parents: 388
diff changeset
   818
  fun get_typs (v, (s, T)) = (TVar (v, s), T)
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   819
  val print = pairself (pretty_typ ctxt)
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   820
in 
389
Christian Urban <urbanc@in.tum.de>
parents: 388
diff changeset
   821
  pretty_helper (print o get_typs) tyenv
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   822
end*}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   823
text_raw {*
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   824
  \end{isabelle}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   825
  \end{minipage}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   826
  \caption{A pretty printing function for type environments, which are 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   827
  produced by unification and matching.\label{fig:prettyenv}}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   828
  \end{figure}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   829
*}
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   830
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   831
text {*
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   832
  The first components in this list stand for the schematic type variables and
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   833
  the second are the associated sorts and types. In this example the sort is
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   834
  the default sort @{text "HOL.type"}. Instead of @{ML "Vartab.dest"}, we will
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   835
  use in what follows our own pretty-printing function from
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   836
  Figure~\ref{fig:prettyenv} for @{ML_type "Type.tyenv"}s. For the type
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   837
  environment in the example this function prints out the more legible:
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   838
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   839
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   840
  @{ML_response_fake [display, gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   841
  "pretty_tyenv @{context} tyenv_unif"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   842
  "[?'a := ?'b list, ?'b := nat]"}
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   843
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   844
  The way the unification function @{ML typ_unify in Sign} is implemented 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   845
  using an initial type environment and initial index makes it easy to
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   846
  unify more than two terms. For example 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   847
*}
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   848
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   849
ML %linenosgray{*val (tyenvs, _) = let
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   850
  val tys1 = (@{typ_pat "?'a"}, @{typ_pat "?'b list"})
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   851
  val tys2 = (@{typ_pat "?'b"}, @{typ_pat "nat"})
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   852
in
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   853
  fold (Sign.typ_unify @{theory}) [tys1, tys2] (Vartab.empty, 0) 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   854
end*}
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   855
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   856
text {*
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   857
  The index @{text 0} in Line 5 is the maximal index of the schematic type
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
   858
  variables occurring in @{text tys1} and @{text tys2}. This index will be
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   859
  increased whenever a new schematic type variable is introduced during
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   860
  unification.  This is for example the case when two schematic type variables
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   861
  have different, incomparable sorts. Then a new schematic type variable is
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   862
  introduced with the combined sorts. To show this let us assume two sorts,
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   863
  say @{text "s1"} and @{text "s2"}, which we attach to the schematic type
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   864
  variables @{text "?'a"} and @{text "?'b"}. Since we do not make any
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   865
  assumption about the sorts, they are incomparable.
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   866
*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   867
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
   868
class s1
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
   869
class s2 
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
   870
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   871
ML %grayML{*val (tyenv, index) = let
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   872
  val ty1 = @{typ_pat "?'a::s1"}
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   873
  val ty2 = @{typ_pat "?'b::s2"}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   874
in
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   875
  Sign.typ_unify @{theory} (ty1, ty2) (Vartab.empty, 0) 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   876
end*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   877
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   878
text {*
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   879
  To print out the result type environment we switch on the printing 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   880
  of sort information by setting @{ML_ind show_sorts in Syntax} to 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   881
  true. This allows us to inspect the typing environment.
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   882
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   883
  @{ML_response_fake [display,gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   884
  "pretty_tyenv @{context} tyenv"
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
   885
  "[?'a::s1 := ?'a1::{s1, s2}, ?'b::s2 := ?'a1::{s1, s2}]"}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   886
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   887
  As can be seen, the type variables @{text "?'a"} and @{text "?'b"} are instantiated
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
   888
  with a new type variable @{text "?'a1"} with sort @{text "{s1, s2}"}. Since a new
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   889
  type variable has been introduced the @{ML index}, originally being @{text 0}, 
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
   890
  has been increased to @{text 1}.
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   891
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   892
  @{ML_response [display,gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   893
  "index"
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   894
  "1"}
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   895
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   896
  Let us now return to the unification problem @{text "?'a * ?'b"} and 
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   897
  @{text "?'b list * nat"} from the beginning of this section, and the 
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   898
  calculated type environment @{ML tyenv_unif}:
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   899
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   900
  @{ML_response_fake [display, gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   901
  "pretty_tyenv @{context} tyenv_unif"
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   902
  "[?'a := ?'b list, ?'b := nat]"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   903
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   904
  Observe that the type environment which the function @{ML typ_unify in
399
Christian Urban <urbanc@in.tum.de>
parents: 398
diff changeset
   905
  Sign} returns is \emph{not} an instantiation in fully solved form: while @{text
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   906
  "?'b"} is instantiated to @{typ nat}, this is not propagated to the
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   907
  instantiation for @{text "?'a"}.  In unification theory, this is often
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   908
  called an instantiation in \emph{triangular form}. These triangular 
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   909
  instantiations, or triangular type environments, are used because of 
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   910
  performance reasons. To apply such a type environment to a type, say @{text "?'a *
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   911
  ?'b"}, you should use the function @{ML_ind norm_type in Envir}:
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   912
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   913
  @{ML_response_fake [display, gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   914
  "Envir.norm_type tyenv_unif @{typ_pat \"?'a * ?'b\"}"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   915
  "nat list * nat"}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   916
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   917
  Matching of types can be done with the function @{ML_ind typ_match in Sign}
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   918
  also from the structure @{ML_struct Sign}. This function returns a @{ML_type
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   919
  Type.tyenv} as well, but might raise the exception @{text TYPE_MATCH} in case
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   920
  of failure. For example
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   921
*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   922
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   923
ML %grayML{*val tyenv_match = let
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   924
  val pat = @{typ_pat "?'a * ?'b"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   925
  and ty  = @{typ_pat "bool list * nat"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   926
in
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   927
  Sign.typ_match @{theory} (pat, ty) Vartab.empty 
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   928
end*}
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   929
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
   930
text {*
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   931
  Printing out the calculated matcher gives
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   932
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   933
  @{ML_response_fake [display,gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   934
  "pretty_tyenv @{context} tyenv_match"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   935
  "[?'a := bool list, ?'b := nat]"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   936
  
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   937
  Unlike unification, which uses the function @{ML norm_type in Envir}, 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   938
  applying the matcher to a type needs to be done with the function
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   939
  @{ML_ind subst_type in Envir}. For example
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   940
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   941
  @{ML_response_fake [display, gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   942
  "Envir.subst_type tyenv_match @{typ_pat \"?'a * ?'b\"}"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   943
  "bool list * nat"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   944
399
Christian Urban <urbanc@in.tum.de>
parents: 398
diff changeset
   945
  Be careful to observe the difference: always use
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   946
  @{ML subst_type in Envir} for matchers and @{ML norm_type in Envir} 
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   947
  for unifiers. To show the difference, let us calculate the 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   948
  following matcher:
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   949
*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   950
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   951
ML %grayML{*val tyenv_match' = let
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   952
  val pat = @{typ_pat "?'a * ?'b"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   953
  and ty  = @{typ_pat "?'b list * nat"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   954
in
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   955
  Sign.typ_match @{theory} (pat, ty) Vartab.empty 
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   956
end*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   957
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   958
text {*
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   959
  Now @{ML tyenv_unif} is equal to @{ML tyenv_match'}. If we apply 
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   960
  @{ML norm_type in Envir} to the type @{text "?'a * ?'b"} we obtain
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   961
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   962
  @{ML_response_fake [display, gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   963
  "Envir.norm_type tyenv_match' @{typ_pat \"?'a * ?'b\"}"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   964
  "nat list * nat"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   965
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   966
  which does not solve the matching problem, and if
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   967
  we apply @{ML subst_type in Envir} to the same type we obtain
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   968
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   969
  @{ML_response_fake [display, gray]
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   970
  "Envir.subst_type tyenv_unif @{typ_pat \"?'a * ?'b\"}"
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   971
  "?'b list * nat"}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   972
  
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   973
  which does not solve the unification problem.
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   974
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   975
  \begin{readmore}
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   976
  Unification and matching for types is implemented
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   977
  in @{ML_file "Pure/type.ML"}. The ``interface'' functions for them
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   978
  are in @{ML_file "Pure/sign.ML"}. Matching and unification produce type environments
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   979
  as results. These are implemented in @{ML_file "Pure/envir.ML"}.
379
Christian Urban <urbanc@in.tum.de>
parents: 378
diff changeset
   980
  This file also includes the substitution and normalisation functions,
386
Christian Urban <urbanc@in.tum.de>
parents: 385
diff changeset
   981
  which apply a type environment to a type. Type environments are lookup 
379
Christian Urban <urbanc@in.tum.de>
parents: 378
diff changeset
   982
  tables which are implemented in @{ML_file "Pure/term_ord.ML"}.
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   983
  \end{readmore}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   984
*}
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   985
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
   986
text {*
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   987
  Unification and matching of terms is substantially more complicated than the
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   988
  type-case. The reason is that terms have abstractions and, in this context,  
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   989
  unification or matching modulo plain equality is often not meaningful. 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
   990
  Nevertheless, Isabelle implements the function @{ML_ind
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   991
  first_order_match in Pattern} for terms.  This matching function returns a
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   992
  type environment and a term environment.  To pretty print the latter we use
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   993
  the function @{text "pretty_env"}:
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   994
*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   995
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
   996
ML %grayML{*fun pretty_env ctxt env =
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
   997
let
389
Christian Urban <urbanc@in.tum.de>
parents: 388
diff changeset
   998
  fun get_trms (v, (T, t)) = (Var (v, T), t) 
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
   999
  val print = pairself (pretty_term ctxt)
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1000
in
389
Christian Urban <urbanc@in.tum.de>
parents: 388
diff changeset
  1001
  pretty_helper (print o get_trms) env 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1002
end*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1003
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1004
text {*
389
Christian Urban <urbanc@in.tum.de>
parents: 388
diff changeset
  1005
  As can be seen from the @{text "get_trms"}-function, a term environment associates 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1006
  a schematic term variable with a type and a term.  An example of a first-order 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1007
  matching problem is the term @{term "P (\<lambda>a b. Q b a)"} and the pattern 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1008
  @{text "?X ?Y"}.
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1009
*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1010
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1011
ML %grayML{*val (_, fo_env) = let
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1012
  val fo_pat = @{term_pat "(?X::(nat\<Rightarrow>nat\<Rightarrow>nat)\<Rightarrow>bool) ?Y"}
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1013
  val trm_a = @{term "P::(nat\<Rightarrow>nat\<Rightarrow>nat)\<Rightarrow>bool"} 
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1014
  val trm_b = @{term "\<lambda>a b. (Q::nat\<Rightarrow>nat\<Rightarrow>nat) b a"}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1015
  val init = (Vartab.empty, Vartab.empty) 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1016
in
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1017
  Pattern.first_order_match @{theory} (fo_pat, trm_a $ trm_b) init
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1018
end *}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1019
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1020
text {*
399
Christian Urban <urbanc@in.tum.de>
parents: 398
diff changeset
  1021
  In this example we annotated types explicitly because then 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1022
  the type environment is empty and can be ignored. The 
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1023
  resulting term environment is
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1024
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1025
  @{ML_response_fake [display, gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1026
  "pretty_env @{context} fo_env"
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1027
  "[?X := P, ?Y := \<lambda>a b. Q b a]"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1028
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1029
  The matcher can be applied to a term using the function @{ML_ind subst_term
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1030
  in Envir} (remember the same convention for types applies to terms: @{ML
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1031
  subst_term in Envir} is for matchers and @{ML norm_term in Envir} for
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1032
  unifiers). The function @{ML subst_term in Envir} expects a type environment,
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1033
  which is set to empty in the example below, and a term environment.
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1034
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1035
  @{ML_response_fake [display, gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1036
  "let
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1037
  val trm = @{term_pat \"(?X::(nat\<Rightarrow>nat\<Rightarrow>nat)\<Rightarrow>bool) ?Y\"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1038
in
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1039
  Envir.subst_term (Vartab.empty, fo_env) trm
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1040
  |> pretty_term @{context}
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1041
  |> pwriteln
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1042
end"
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1043
  "P (\<lambda>a b. Q b a)"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1044
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1045
  First-order matching is useful for matching against applications and
399
Christian Urban <urbanc@in.tum.de>
parents: 398
diff changeset
  1046
  variables. It can also deal with abstractions and a limited form of
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1047
  alpha-equivalence, but this kind of matching should be used with care, since
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1048
  it is not clear whether the result is meaningful. A meaningful example is
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1049
  matching @{text "\<lambda>x. P x"} against the pattern @{text "\<lambda>y. ?X y"}. In this
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1050
  case, first-order matching produces @{text "[?X := P]"}.
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1051
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1052
  @{ML_response_fake [display, gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1053
  "let
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1054
  val fo_pat = @{term_pat \"\<lambda>y. (?X::nat\<Rightarrow>bool) y\"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1055
  val trm = @{term \"\<lambda>x. (P::nat\<Rightarrow>bool) x\"} 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1056
  val init = (Vartab.empty, Vartab.empty) 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1057
in
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1058
  Pattern.first_order_match @{theory} (fo_pat, trm) init
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1059
  |> snd 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1060
  |> pretty_env @{context} 
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1061
end"
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1062
  "[?X := P]"}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1063
*}
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1064
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1065
text {*
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1066
  Unification of abstractions is more thoroughly studied in the context of
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1067
  higher-order pattern unification and higher-order pattern matching.  A
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1068
  \emph{\index*{pattern}} is a well-formed term in which the arguments to
429
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1069
  every schematic variable are distinct bounds.
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1070
  In particular this excludes terms where a
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1071
  schematic variable is an argument of another one and where a schematic
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1072
  variable is applied twice with the same bound variable. The function
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1073
  @{ML_ind pattern in Pattern} in the structure @{ML_struct Pattern} tests
429
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1074
  whether a term satisfies these restrictions under the assumptions
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1075
  that it is beta-normal, well-typed and has no loose bound variables.
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1076
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1077
  @{ML_response [display, gray]
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1078
  "let
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1079
  val trm_list = 
431
17f70e2834f5 added some further ho-pat-unif examples but commented out (missing response check)
schropp <schropp@in.tum.de>
parents: 430
diff changeset
  1080
        [@{term_pat \"?X\"}, @{term_pat \"a\"},
430
73437f42c9d3 some more examples of ho-patterns
schropp <schropp@in.tum.de>
parents: 429
diff changeset
  1081
         @{term_pat \"f (\<lambda>a b. ?X a b) c\"},
73437f42c9d3 some more examples of ho-patterns
schropp <schropp@in.tum.de>
parents: 429
diff changeset
  1082
         @{term_pat \"\<lambda>a b. (op +) a b\"},
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1083
         @{term_pat \"\<lambda>a. (op +) a ?Y\"}, @{term_pat \"?X ?Y\"},
430
73437f42c9d3 some more examples of ho-patterns
schropp <schropp@in.tum.de>
parents: 429
diff changeset
  1084
         @{term_pat \"\<lambda>a b. ?X a b ?Y\"}, @{term_pat \"\<lambda>a. ?X a a\"},
73437f42c9d3 some more examples of ho-patterns
schropp <schropp@in.tum.de>
parents: 429
diff changeset
  1085
         @{term_pat \"?X a\"}] 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1086
in
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1087
  map Pattern.pattern trm_list
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1088
end"
430
73437f42c9d3 some more examples of ho-patterns
schropp <schropp@in.tum.de>
parents: 429
diff changeset
  1089
  "[true, true, true, true, true, false, false, false, false]"}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1090
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1091
  The point of the restriction to patterns is that unification and matching 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1092
  are decidable and produce most general unifiers, respectively matchers. 
429
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1093
  Note that \emph{both} terms to be unified have to be higher-order patterns
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1094
  for this to work. The exception @{ML_ind Pattern in Pattern} indicates failure
d04d1cd0e058 corrected def of ho-pat-unif, some extra hints about patterns
schropp <schropp@in.tum.de>
parents: 423
diff changeset
  1095
  in this regard.
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1096
  In this way, matching and unification can be implemented as functions that 
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1097
  produce a type and term environment (unification actually returns a 
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1098
  record of type @{ML_type Envir.env} containing a max-index, a type environment 
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1099
  and a term environment). The corresponding functions are @{ML_ind match in Pattern}
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1100
  and @{ML_ind unify in Pattern}, both implemented in the structure
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1101
  @{ML_struct Pattern}. An example for higher-order pattern unification is
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1102
384
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1103
  @{ML_response_fake [display, gray]
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1104
  "let
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1105
  val trm1 = @{term_pat \"\<lambda>x y. g (?X y x) (f (?Y x))\"}
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1106
  val trm2 = @{term_pat \"\<lambda>u v. g u (f u)\"}
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1107
  val init = Envir.empty 0
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1108
  val env = Pattern.unify @{theory} (trm1, trm2) init
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1109
in
384
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1110
  pretty_env @{context} (Envir.term_env env)
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1111
end"
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1112
  "[?X := \<lambda>y x. x, ?Y := \<lambda>x. x]"}
Christian Urban <urbanc@in.tum.de>
parents: 383
diff changeset
  1113
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1114
  The function @{ML_ind "Envir.empty"} generates a record with a specified
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1115
  max-index for the schematic variables (in the example the index is @{text
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1116
  0}) and empty type and term environments. The function @{ML_ind
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1117
  "Envir.term_env"} pulls out the term environment from the result record. The
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1118
  corresponding function for type environment is @{ML_ind
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1119
  "Envir.type_env"}. An assumption of this function is that the terms to be
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1120
  unified have already the same type. In case of failure, the exceptions that
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1121
  are raised are either @{text Pattern}, @{text MATCH} or @{text Unif}.
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1122
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1123
  As mentioned before, unrestricted higher-order unification, respectively
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1124
  unrestricted higher-order matching, is in general undecidable and might also
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1125
  not posses a single most general solution. Therefore Isabelle implements the
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1126
  unification function @{ML_ind unifiers in Unify} so that it returns a lazy
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1127
  list of potentially infinite unifiers.  An example is as follows
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1128
*}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1129
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1130
ML %grayML{*val uni_seq =
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1131
let 
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1132
  val trm1 = @{term_pat "?X ?Y"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1133
  val trm2 = @{term "f a"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1134
  val init = Envir.empty 0
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1135
in
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1136
  Unify.unifiers (@{theory}, init, [(trm1, trm2)])
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1137
end *}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1138
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1139
text {*
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1140
  The unifiers can be extracted from the lazy sequence using the 
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1141
  function @{ML_ind "Seq.pull"}. In the example we obtain three 
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1142
  unifiers @{text "un1\<dots>un3"}.
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1143
*}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1144
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1145
ML %grayML{*val SOME ((un1, _), next1) = Seq.pull uni_seq;
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1146
val SOME ((un2, _), next2) = Seq.pull next1;
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1147
val SOME ((un3, _), next3) = Seq.pull next2;
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1148
val NONE = Seq.pull next3 *}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1149
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1150
text {*
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1151
  \footnote{\bf FIXME: what is the list of term pairs in the unifier: flex-flex pairs?}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1152
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1153
  We can print them out as follows.
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1154
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1155
  @{ML_response_fake [display, gray]
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1156
  "pretty_env @{context} (Envir.term_env un1);
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1157
pretty_env @{context} (Envir.term_env un2);
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1158
pretty_env @{context} (Envir.term_env un3)"
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1159
  "[?X := \<lambda>a. a, ?Y := f a]
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1160
[?X := f, ?Y := a]
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1161
[?X := \<lambda>b. f a]"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1162
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1163
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1164
  In case of failure the function @{ML_ind unifiers in Unify} does not raise
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1165
  an exception, rather returns the empty sequence. For example
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1166
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1167
  @{ML_response [display, gray]
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1168
"let 
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1169
  val trm1 = @{term \"a\"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1170
  val trm2 = @{term \"b\"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1171
  val init = Envir.empty 0
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1172
in
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1173
  Unify.unifiers (@{theory}, init, [(trm1, trm2)])
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1174
  |> Seq.pull
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1175
end"
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1176
"NONE"}
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1177
408
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1178
  In order to find a reasonable solution for a unification problem, Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1179
  also tries first to solve the problem by higher-order pattern
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1180
  unification. Only in case of failure full higher-order unification is
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1181
  called. This function has a built-in bound, which can be accessed and
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
  1182
  manipulated as a configuration value. For example
408
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1183
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1184
  @{ML_response_fake [display,gray]
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
  1185
  "Config.get_global @{theory} (Unify.search_bound)"
408
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1186
  "Int 60"}
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1187
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1188
  If this bound is reached during unification, Isabelle prints out the
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1189
  warning message @{text [quotes] "Unification bound exceeded"} and
409
Christian Urban <urbanc@in.tum.de>
parents: 408
diff changeset
  1190
  plenty of diagnostic information (sometimes annoyingly plenty of 
Christian Urban <urbanc@in.tum.de>
parents: 408
diff changeset
  1191
  information). 
408
Christian Urban <urbanc@in.tum.de>
parents: 405
diff changeset
  1192
387
5dcee4d751ad completed the unification section
Christian Urban <urbanc@in.tum.de>
parents: 386
diff changeset
  1193
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1194
  For higher-order matching the function is called @{ML_ind matchers in Unify}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1195
  implemented in the structure @{ML_struct Unify}. Also this function returns
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1196
  sequences with possibly more than one matcher.  Like @{ML unifiers in
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1197
  Unify}, this function does not raise an exception in case of failure, but
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1198
  returns an empty sequence. It also first tries out whether the matching
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1199
  problem can be solved by first-order matching.
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1200
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1201
  Higher-order matching might be necessary for instantiating a theorem
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1202
  appropriately. More on this will be given in Sections~\ref{sec:theorems}. 
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1203
  Here we only have a look at a simple case, namely the theorem 
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1204
  @{thm [source] spec}:
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1205
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1206
  \begin{isabelle}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1207
  \isacommand{thm}~@{thm [source] spec}\\
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1208
  @{text "> "}~@{thm spec}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1209
  \end{isabelle}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1210
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1211
  as an introduction rule. Applying it directly can lead to unexpected
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1212
  behaviour since the unification has more than one solution. One way round
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1213
  this problem is to instantiate the schematic variables @{text "?P"} and
465
886a7c614ced updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 458
diff changeset
  1214
  @{text "?x"}.  instantiation function for theorems is 
886a7c614ced updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 458
diff changeset
  1215
  @{ML_ind instantiate_normalize in Drule} from the structure 
886a7c614ced updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 458
diff changeset
  1216
  @{ML_struct Drule}. One problem, however, is
414
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1217
  that this function expects the instantiations as lists of @{ML_type ctyp}
5fc2fb34c323 polished
Christian Urban <urbanc@in.tum.de>
parents: 412
diff changeset
  1218
  and @{ML_type cterm} pairs:
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1219
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1220
  \begin{isabelle}
465
886a7c614ced updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 458
diff changeset
  1221
  @{ML instantiate_normalize in Drule}@{text ":"}
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1222
  @{ML_type "(ctyp * ctyp) list * (cterm * cterm) list -> thm -> thm"}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1223
  \end{isabelle}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1224
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1225
  This means we have to transform the environment the higher-order matching 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1226
  function returns into such an instantiation. For this we use the functions
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1227
  @{ML_ind term_env in Envir} and @{ML_ind type_env in Envir}, which extract
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1228
  from an environment the corresponding variable mappings for schematic type 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1229
  and term variables. These mappings can be turned into proper 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1230
  @{ML_type ctyp}-pairs with the function
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1231
*}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1232
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1233
ML %grayML{*fun prep_trm thy (x, (T, t)) = 
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1234
  (cterm_of thy (Var (x, T)), cterm_of thy t)*} 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1235
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1236
text {*
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1237
  and into proper @{ML_type cterm}-pairs with
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1238
*}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1239
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1240
ML %grayML{*fun prep_ty thy (x, (S, ty)) = 
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1241
  (ctyp_of thy (TVar (x, S)), ctyp_of thy ty)*}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1242
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1243
text {*
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1244
  We can now calculate the instantiations from the matching function. 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1245
*}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1246
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1247
ML %linenosgray{*fun matcher_inst thy pat trm i = 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1248
let
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1249
  val univ = Unify.matchers thy [(pat, trm)] 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1250
  val env = nth (Seq.list_of univ) i
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1251
  val tenv = Vartab.dest (Envir.term_env env)
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1252
  val tyenv = Vartab.dest (Envir.type_env env)
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1253
in
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1254
  (map (prep_ty thy) tyenv, map (prep_trm thy) tenv)
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1255
end*}
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1256
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1257
text {*
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1258
  In Line 3 we obtain the higher-order matcher. We assume there is a finite
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1259
  number of them and select the one we are interested in via the parameter 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1260
  @{text i} in the next line. In Lines 5 and 6 we destruct the resulting 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1261
  environments using the function @{ML_ind dest in Vartab}. Finally, we need 
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1262
  to map the functions @{ML prep_trm} and @{ML prep_ty} over the respective 
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1263
  environments (Line 8). As a simple example we instantiate the
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1264
  @{thm [source] spec} rule so that its conclusion is of the form 
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1265
  @{term "Q True"}. 
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1266
 
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1267
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1268
  @{ML_response_fake [gray,display,linenos] 
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1269
  "let  
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1270
  val pat = Logic.strip_imp_concl (prop_of @{thm spec})
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1271
  val trm = @{term \"Trueprop (Q True)\"}
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1272
  val inst = matcher_inst @{theory} pat trm 1
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1273
in
465
886a7c614ced updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 458
diff changeset
  1274
  Drule.instantiate_normalize inst @{thm spec}
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1275
end"
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1276
  "\<forall>x. Q x \<Longrightarrow> Q True"}
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1277
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1278
  Note that we had to insert a @{text "Trueprop"}-coercion in Line 3 since the 
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1279
  conclusion of @{thm [source] spec} contains one.
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1280
 
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
  1281
  \begin{readmore}
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1282
  Unification and matching of higher-order patterns is implemented in 
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1283
  @{ML_file "Pure/pattern.ML"}. This file also contains a first-order matcher
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1284
  for terms. Full higher-order unification is implemented
383
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1285
  in @{ML_file "Pure/unify.ML"}. It uses lazy sequences which are implemented
Christian Urban <urbanc@in.tum.de>
parents: 382
diff changeset
  1286
  in @{ML_file "Pure/General/seq.ML"}.
378
8d160d79b48c section about matching and unification of types
Christian Urban <urbanc@in.tum.de>
parents: 377
diff changeset
  1287
  \end{readmore}
377
272ba2cceeb2 added a section about unification and matching
Christian Urban <urbanc@in.tum.de>
parents: 375
diff changeset
  1288
*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1289
435
524b72520c43 added Andreas
Christian Urban <urbanc@in.tum.de>
parents: 433
diff changeset
  1290
section {* Sorts (TBD)\label{sec:sorts} *}
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1291
398
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1292
text {*
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1293
  Type classes are formal names in the type system which are linked to
433
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1294
  predicates of one type variable (via the axclass mechanism) and thereby
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1295
  express extra properties on types, to be propagated by the type system.
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1296
  The type-in-class judgement is defined
433
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1297
  via a simple logic over types, with inferences solely based on
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1298
  modus ponens, instantiation and axiom use.
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1299
  The declared axioms of this logic are called an order-sorted algebra (see Schmidt-Schauss).
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1300
  It consists of an acyclic subclass relation and a set of image containment
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1301
  declarations for type constructors, called arities.
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1302
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1303
  A well-behaved high-level view on type classes has long been established
433
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1304
  (cite Haftmann-Wenzel): the predicate behind a type class is the foundation
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1305
  of a locale (for context-management reasons)
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1306
  and may use so-called type class parameters. These are type-indexed constants
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1307
  dependent on the sole type variable and are implemented via overloading.
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1308
  Overloading a constant means specifying its value on a type based on
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1309
  a well-founded reduction towards other values of constants on types.
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1310
  When instantiating type classes
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1311
  (i.e. proving arities) you are specifying overloading via primitive recursion.
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1312
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1313
  Sorts are finite intersections of type classes and are implemented as lists
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1314
  of type class names. The empty intersection, i.e. the empty list, is therefore
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1315
  inhabited by all types and is called the topsort.
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1316
433
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1317
  Free and schematic type variables are always annotated with sorts, thereby restricting
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1318
  the domain of types they quantify over and corresponding to an implicit hypothesis
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1319
  about the type variable.
398
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1320
*}
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1321
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1322
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1323
ML {* Sign.classes_of @{theory} *}
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1324
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1325
text {*
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1326
  \begin{readmore}
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1327
  Classes, sorts and arities are defined in @{ML_file "Pure/term.ML"}.
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1328
  
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1329
  @{ML_file "Pure/sorts.ML"} contains comparison and normalization functionality for sorts,
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1330
    manages the order sorted algebra and offers an interface for reinterpreting
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1331
    derivations of type in class judgements
433
schropp <schropp@in.tum.de>
parents: 432
diff changeset
  1332
  @{ML_file "Pure/defs.ML"} manages the constant dependency graph and keeps it well-founded
432
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1333
    (its define function doesn't terminate for complex non-well-founded dependencies)
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1334
  @{ML_file "Pure/axclass.ML"} manages the theorems that back up subclass and arity relations
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1335
    and provides basic infrastructure for establishing the high-level view on type classes
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1336
  @{ML_file "Pure/sign.ML"} is a common interface to all the type-theory-like declarations
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1337
    (especially names, constants, paths, type classes) a
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1338
    theory acquires by theory extension mechanisms and manages associated certification
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1339
    functionality.
087dc1726a99 some blabla about type classes, sorts, overloading, high level view on type classes
schropp <schropp@in.tum.de>
parents: 431
diff changeset
  1340
    It also provides the most needed functionality from individual underlying modules.
398
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1341
  \end{readmore}
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1342
*}
7f7080ce7c2b started something about sorts
Christian Urban <urbanc@in.tum.de>
parents: 396
diff changeset
  1343
381
97518188ef0e added more to the unification section
Christian Urban <urbanc@in.tum.de>
parents: 380
diff changeset
  1344
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1345
section {* Type-Checking\label{sec:typechecking} *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1346
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1347
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1348
  Remember Isabelle follows the Church-style typing for terms, i.e., a term contains 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1349
  enough typing information (constants, free variables and abstractions all have typing 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1350
  information) so that it is always clear what the type of a term is. 
369
74ba778b09c9 tuned index
Christian Urban <urbanc@in.tum.de>
parents: 368
diff changeset
  1351
  Given a well-typed term, the function @{ML_ind type_of in Term} returns the 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1352
  type of a term. Consider for example:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1353
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1354
  @{ML_response [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1355
  "type_of (@{term \"f::nat \<Rightarrow> bool\"} $ @{term \"x::nat\"})" "bool"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1356
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1357
  To calculate the type, this function traverses the whole term and will
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1358
  detect any typing inconsistency. For example changing the type of the variable 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1359
  @{term "x"} from @{typ "nat"} to @{typ "int"} will result in the error message: 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1360
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1361
  @{ML_response_fake [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1362
  "type_of (@{term \"f::nat \<Rightarrow> bool\"} $ @{term \"x::int\"})" 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1363
  "*** Exception- TYPE (\"type_of: type mismatch in application\" \<dots>"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1364
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1365
  Since the complete traversal might sometimes be too costly and
369
74ba778b09c9 tuned index
Christian Urban <urbanc@in.tum.de>
parents: 368
diff changeset
  1366
  not necessary, there is the function @{ML_ind fastype_of in Term}, which 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1367
  also returns the type of a term.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1368
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1369
  @{ML_response [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1370
  "fastype_of (@{term \"f::nat \<Rightarrow> bool\"} $ @{term \"x::nat\"})" "bool"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1371
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1372
  However, efficiency is gained on the expense of skipping some tests. You 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1373
  can see this in the following example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1374
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1375
   @{ML_response [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1376
  "fastype_of (@{term \"f::nat \<Rightarrow> bool\"} $ @{term \"x::int\"})" "bool"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1377
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1378
  where no error is detected.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1379
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1380
  Sometimes it is a bit inconvenient to construct a term with 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1381
  complete typing annotations, especially in cases where the typing 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1382
  information is redundant. A short-cut is to use the ``place-holder'' 
345
4c54ef4dc84d polished
Christian Urban <urbanc@in.tum.de>
parents: 343
diff changeset
  1383
  type @{ML_ind dummyT in Term} and then let type-inference figure out the 
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1384
  complete type. The type inference can be invoked with the function
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1385
  @{ML_ind check_term in Syntax}. An example is as follows:
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1386
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1387
  @{ML_response_fake [display,gray] 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1388
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1389
  val c = Const (@{const_name \"plus\"}, dummyT) 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1390
  val o = @{term \"1::nat\"} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1391
  val v = Free (\"x\", dummyT)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1392
in   
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1393
  Syntax.check_term @{context} (c $ o $ v)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1394
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1395
"Const (\"HOL.plus_class.plus\", \"nat \<Rightarrow> nat \<Rightarrow> nat\") $
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1396
  Const (\"HOL.one_class.one\", \"nat\") $ Free (\"x\", \"nat\")"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1397
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1398
  Instead of giving explicitly the type for the constant @{text "plus"} and the free 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1399
  variable @{text "x"}, type-inference fills in the missing information.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1400
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1401
  \begin{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1402
  See @{ML_file "Pure/Syntax/syntax.ML"} where more functions about reading,
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1403
  checking and pretty-printing of terms are defined. Functions related to
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1404
  type-inference are implemented in @{ML_file "Pure/type.ML"} and 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1405
  @{ML_file "Pure/type_infer.ML"}. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1406
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1407
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1408
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1409
  \begin{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1410
  Check that the function defined in Exercise~\ref{fun:revsum} returns a
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1411
  result that type-checks. See what happens to the  solutions of this 
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  1412
  exercise given in Appendix \ref{ch:solutions} when they receive an 
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  1413
  ill-typed term as input.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1414
  \end{exercise}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1415
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1416
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1417
section {* Certified Terms and Certified Types *}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1418
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1419
text {*
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1420
  You can freely construct and manipulate @{ML_type "term"}s and @{ML_type
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1421
  typ}es, since they are just arbitrary unchecked trees. However, you
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1422
  eventually want to see if a term is well-formed, or type-checks, relative to
369
74ba778b09c9 tuned index
Christian Urban <urbanc@in.tum.de>
parents: 368
diff changeset
  1423
  a theory.  Type-checking is done via the function @{ML_ind cterm_of in Thm}, which
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1424
  converts a @{ML_type term} into a @{ML_type cterm}, a \emph{certified}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1425
  term. Unlike @{ML_type term}s, which are just trees, @{ML_type "cterm"}s are
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1426
  abstract objects that are guaranteed to be type-correct, and they can only
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1427
  be constructed via ``official interfaces''.
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1428
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1429
  Certification is always relative to a theory context. For example you can 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1430
  write:
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1431
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1432
  @{ML_response_fake [display,gray] 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1433
  "cterm_of @{theory} @{term \"(a::nat) + b = c\"}" 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1434
  "a + b = c"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1435
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1436
  This can also be written with an antiquotation:
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1437
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1438
  @{ML_response_fake [display,gray] 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1439
  "@{cterm \"(a::nat) + b = c\"}" 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1440
  "a + b = c"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1441
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1442
  Attempting to obtain the certified term for
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1443
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1444
  @{ML_response_fake_both [display,gray] 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1445
  "@{cterm \"1 + True\"}" 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1446
  "Type unification failed \<dots>"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1447
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1448
  yields an error (since the term is not typable). A slightly more elaborate
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1449
  example that type-checks is:
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1450
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1451
@{ML_response_fake [display,gray] 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1452
"let
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1453
  val natT = @{typ \"nat\"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1454
  val zero = @{term \"0::nat\"}
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  1455
  val plus = Const (@{const_name plus}, [natT, natT] ---> natT)
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1456
in
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  1457
  cterm_of @{theory} (plus $ zero $ zero)
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  1458
end" 
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  1459
  "0 + 0"}
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1460
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1461
  In Isabelle not just terms need to be certified, but also types. For example, 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1462
  you obtain the certified type for the Isabelle type @{typ "nat \<Rightarrow> bool"} on 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1463
  the ML-level as follows:
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1464
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1465
  @{ML_response_fake [display,gray]
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1466
  "ctyp_of @{theory} (@{typ nat} --> @{typ bool})"
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1467
  "nat \<Rightarrow> bool"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1468
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1469
  or with the antiquotation:
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1470
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1471
  @{ML_response_fake [display,gray]
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1472
  "@{ctyp \"nat \<Rightarrow> bool\"}"
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1473
  "nat \<Rightarrow> bool"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1474
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1475
  Since certified terms are, unlike terms, abstract objects, we cannot
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1476
  pattern-match against them. However, we can construct them. For example
513
f223f8223d4a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 507
diff changeset
  1477
  the function @{ML_ind apply in Thm} produces a certified application.
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1478
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1479
  @{ML_response_fake [display,gray]
513
f223f8223d4a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 507
diff changeset
  1480
  "Thm.apply @{cterm \"P::nat \<Rightarrow> bool\"} @{cterm \"3::nat\"}"
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1481
  "P 3"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1482
351
f118240ab44a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 350
diff changeset
  1483
  Similarly the function @{ML_ind list_comb in Drule} from the structure @{ML_struct Drule}
f118240ab44a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 350
diff changeset
  1484
  applies a list of @{ML_type cterm}s.
335
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1485
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1486
  @{ML_response_fake [display,gray]
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1487
  "let
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1488
  val chead = @{cterm \"P::unit \<Rightarrow> nat \<Rightarrow> bool\"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1489
  val cargs = [@{cterm \"()\"}, @{cterm \"3::nat\"}]
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1490
in
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1491
  Drule.list_comb (chead, cargs)
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1492
end"
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1493
  "P () 3"}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1494
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1495
  \begin{readmore}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1496
  For functions related to @{ML_type cterm}s and @{ML_type ctyp}s see 
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1497
  the files @{ML_file "Pure/thm.ML"}, @{ML_file "Pure/more_thm.ML"} and
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1498
  @{ML_file "Pure/drule.ML"}.
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1499
  \end{readmore}
163ac0662211 reorganised the certified terms section; tuned
Christian Urban <urbanc@in.tum.de>
parents: 329
diff changeset
  1500
*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1501
403
444bc9f17cfc added something about unifiacation and instantiations
Christian Urban <urbanc@in.tum.de>
parents: 401
diff changeset
  1502
section {* Theorems\label{sec:theorems} *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1503
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1504
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1505
  Just like @{ML_type cterm}s, theorems are abstract objects of type @{ML_type thm} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1506
  that can only be built by going through interfaces. As a consequence, every proof 
388
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1507
  in Isabelle is correct by construction. This follows the tradition of the LCF-approach.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1508
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1509
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1510
  To see theorems in ``action'', let us give a proof on the ML-level for the following 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1511
  statement:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1512
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1513
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1514
  lemma 
351
f118240ab44a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 350
diff changeset
  1515
    assumes assm\<^isub>1: "\<And>(x::nat). P x \<Longrightarrow> Q x" 
f118240ab44a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 350
diff changeset
  1516
    and     assm\<^isub>2: "P t"
f118240ab44a updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 350
diff changeset
  1517
    shows "Q t"(*<*)oops(*>*) 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1518
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1519
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1520
  The corresponding ML-code is as follows:
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1521
*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1522
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1523
ML %linenosgray{*val my_thm = 
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1524
let
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1525
  val assm1 = @{cprop "\<And>(x::nat). P x \<Longrightarrow> Q x"}
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1526
  val assm2 = @{cprop "(P::nat \<Rightarrow> bool) t"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1527
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1528
  val Pt_implies_Qt = 
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1529
    Thm.assume assm1
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1530
    |> Thm.forall_elim @{cterm "t::nat"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1531
  
449
f952f2679a11 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 448
diff changeset
  1532
  val Qt = Thm.implies_elim Pt_implies_Qt (Thm.assume assm2)
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1533
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1534
  Qt 
449
f952f2679a11 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 448
diff changeset
  1535
  |> Thm.implies_intr assm2
f952f2679a11 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 448
diff changeset
  1536
  |> Thm.implies_intr assm1
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1537
end*}
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1538
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1539
text {*
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1540
  Note that in Line 3 and 4 we use the antiquotation @{text "@{cprop \<dots>}"}, which
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1541
  inserts necessary @{text "Trueprop"}s.
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1542
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1543
  If we print out the value of @{ML my_thm} then we see only the 
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1544
  final statement of the theorem.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1545
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1546
  @{ML_response_fake [display, gray]
440
a0b280dd4bc7 partially moved from string_of_term to pretty_term
Christian Urban <urbanc@in.tum.de>
parents: 439
diff changeset
  1547
  "pwriteln (pretty_thm @{context} my_thm)"
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1548
  "\<lbrakk>\<And>x. P x \<Longrightarrow> Q x; P t\<rbrakk> \<Longrightarrow> Q t"}
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1549
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1550
  However, internally the code-snippet constructs the following 
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1551
  proof.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1552
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1553
  \[
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1554
  \infer[(@{text "\<Longrightarrow>"}$-$intro)]{\vdash @{prop "(\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> P t \<Longrightarrow> Q t"}}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1555
    {\infer[(@{text "\<Longrightarrow>"}$-$intro)]{@{prop "\<And>x. P x \<Longrightarrow> Q x"} \vdash @{prop "P t \<Longrightarrow> Q t"}}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1556
       {\infer[(@{text "\<Longrightarrow>"}$-$elim)]{@{prop "\<And>x. P x \<Longrightarrow> Q x"}, @{prop "P t"} \vdash @{prop "Q t"}}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1557
          {\infer[(@{text "\<And>"}$-$elim)]{@{prop "\<And>x. P x \<Longrightarrow> Q x"} \vdash @{prop "P t \<Longrightarrow> Q t"}}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1558
                 {\infer[(assume)]{@{prop "\<And>x. P x \<Longrightarrow> Q x"} \vdash @{prop "\<And>x. P x \<Longrightarrow> Q x"}}{}}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1559
                 &
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1560
           \infer[(assume)]{@{prop "P t"} \vdash @{prop "P t"}}{}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1561
          }
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1562
       }
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1563
    }
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1564
  \]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1565
339
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1566
  While we obtained a theorem as result, this theorem is not
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1567
  yet stored in Isabelle's theorem database. Consequently, it cannot be 
348
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1568
  referenced on the user level. One way to store it in the theorem database is
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  1569
  by using the function @{ML_ind note in Local_Theory} from the structure 
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  1570
  @{ML_struct Local_Theory} (the Isabelle command
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  1571
  \isacommand{local\_setup} will be explained in more detail in 
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  1572
  Section~\ref{sec:local}).
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1573
*}
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1574
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1575
local_setup %gray {*
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1576
  Local_Theory.note ((@{binding "my_thm"}, []), [my_thm]) #> snd *}
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1577
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1578
text {*
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  1579
  The third argument of @{ML note in Local_Theory} is the list of theorems we
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1580
  want to store under a name. We can store more than one under a single name. 
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  1581
  The first argument of @{ML note in Local_Theory} is the name under
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  1582
  which we store the theorem or theorems. The second argument can contain a
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1583
  list of theorem attributes, which we will explain in detail in
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1584
  Section~\ref{sec:attributes}. Below we just use one such attribute,
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1585
  @{ML_ind simp_add in Simplifier}, for adding the theorem to the simpset:
339
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1586
*}
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1587
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1588
local_setup %gray {*
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1589
  Local_Theory.note ((@{binding "my_thm_simp"}, 
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1590
       [Attrib.internal (K Simplifier.simp_add)]), [my_thm]) #> snd *}
339
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1591
c588e8422737 used a better implementation of \index in Latex; added more to the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 338
diff changeset
  1592
text {*
348
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1593
  Note that we have to use another name under which the theorem is stored,
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1594
  since Isabelle does not allow us to call  @{ML_ind note in Local_Theory} twice
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1595
  with the same name. The attribute needs to be wrapped inside the function @{ML_ind
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1596
  internal in Attrib} from the structure @{ML_struct Attrib}. If we use the function 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1597
  @{ML get_thm_names_from_ss} from
348
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1598
  the previous chapter, we can check whether the theorem has actually been
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1599
  added.
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1600
340
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1601
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1602
  @{ML_response [display,gray]
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1603
  "let
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1604
  fun pred s = match_string \"my_thm_simp\" s
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1605
in
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1606
  exists pred (get_thm_names_from_ss @{simpset})
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1607
end"
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1608
  "true"}
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1609
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1610
  The main point of storing the theorems @{thm [source] my_thm} and @{thm
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1611
  [source] my_thm_simp} is that they can now also be referenced with the
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1612
  \isacommand{thm}-command on the user-level of Isabelle
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1613
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  1614
    
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1615
  \begin{isabelle}
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1616
  \isacommand{thm}~@{text "my_thm my_thm_simp"}\isanewline
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1617
  @{text ">"}~@{prop "\<lbrakk>\<And>x. P x \<Longrightarrow> Q x; P t\<rbrakk> \<Longrightarrow> Q t"}\isanewline
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1618
  @{text ">"}~@{prop "\<lbrakk>\<And>x. P x \<Longrightarrow> Q x; P t\<rbrakk> \<Longrightarrow> Q t"}
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1619
  \end{isabelle}
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1620
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1621
  or with the @{text "@{thm \<dots>}"}-antiquotation on the ML-level. Otherwise the 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1622
  user has no access to these theorems. 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1623
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1624
  Recall that Isabelle does not let you call @{ML note in Local_Theory} twice
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1625
  with the same theorem name. In effect, once a theorem is stored under a name, 
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
  1626
  this association is fixed. While this is a ``safety-net'' to make sure a
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1627
  theorem name refers to a particular theorem or collection of theorems, it is 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1628
  also a bit too restrictive in cases where a theorem name should refer to a 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1629
  dynamically expanding list of theorems (like a simpset). Therefore Isabelle 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1630
  also implements a mechanism where a theorem name can refer to a custom theorem 
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
  1631
  list. For this you can use the function @{ML_ind add_thms_dynamic in Global_Theory}. 
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
  1632
  To see how it works let us assume we defined our own theorem list @{text MyThmList}.
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1633
*}
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1634
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1635
ML %grayML{*structure MyThmList = Generic_Data
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1636
  (type T = thm list
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1637
   val empty = []
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1638
   val extend = I
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1639
   val merge = merge Thm.eq_thm_prop)
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1640
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1641
fun update thm = Context.theory_map (MyThmList.map (Thm.add_thm thm))*}
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1642
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1643
text {*
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1644
  The function @{ML update} allows us to update the theorem list, for example
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1645
  by adding the theorem @{thm [source] TrueI}.
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1646
*}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1647
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1648
setup %gray {* update @{thm TrueI} *}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1649
 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1650
text {*
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1651
  We can now install the theorem list so that it is visible to the user and 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1652
  can be refered to by a theorem name. For this need to call 
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
  1653
  @{ML_ind add_thms_dynamic in Global_Theory}
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1654
*}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1655
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1656
setup %gray {* 
451
fc074e669f9f disabled foobar_prove; updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 449
diff changeset
  1657
  Global_Theory.add_thms_dynamic (@{binding "mythmlist"}, MyThmList.get) 
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1658
*}
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1659
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1660
text {*
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1661
  with a name and a function that accesses the theorem list. Now if the
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1662
  user issues the command
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1663
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1664
  \begin{isabelle}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1665
  \isacommand{thm}~@{text "mythmlist"}\\
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1666
  @{text "> True"}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1667
  \end{isabelle}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1668
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1669
  the current content of the theorem list is displayed. If more theorems are stored in 
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1670
  the list, say
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1671
*}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1672
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1673
setup %gray {* update @{thm FalseE} *}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1674
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1675
text {*
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1676
  then the same command produces
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1677
  
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1678
  \begin{isabelle}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1679
  \isacommand{thm}~@{text "mythmlist"}\\
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1680
  @{text "> False \<Longrightarrow> ?P"}\\
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1681
  @{text "> True"}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1682
  \end{isabelle}
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1683
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1684
  Note that if we add the theorem @{thm [source] FalseE} again to the list
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1685
*}
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1686
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1687
setup %gray {* update @{thm FalseE} *}
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1688
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1689
text {*
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1690
  we still obtain the same list. The reason is that we used the function @{ML_ind
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1691
  add_thm in Thm} in our update function. This is a dedicated function which
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1692
  tests whether the theorem is already in the list.  This test is done
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1693
  according to alpha-equivalence of the proposition of the theorem. The
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1694
  corresponding testing function is @{ML_ind eq_thm_prop in Thm}.
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1695
  Suppose you proved the following three theorems.
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1696
*}
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1697
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1698
lemma
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1699
  shows thm1: "\<forall>x. P x" 
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1700
  and   thm2: "\<forall>y. P y" 
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1701
  and   thm3: "\<forall>y. Q y" sorry
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1702
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1703
text {*
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1704
  Testing them for alpha equality produces:
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1705
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1706
  @{ML_response [display,gray]
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1707
"(Thm.eq_thm_prop (@{thm thm1}, @{thm thm2}),
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  1708
 Thm.eq_thm_prop (@{thm thm2}, @{thm thm3}))"
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1709
"(true, false)"}
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1710
340
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1711
  Many functions destruct theorems into @{ML_type cterm}s. For example
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1712
  the functions @{ML_ind lhs_of in Thm} and @{ML_ind rhs_of in Thm} return 
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1713
  the left and right-hand side, respectively, of a meta-equality.
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1714
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1715
  @{ML_response_fake [display,gray]
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1716
  "let
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1717
  val eq = @{thm True_def}
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1718
in
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1719
  (Thm.lhs_of eq, Thm.rhs_of eq) 
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1720
  |> pairself (Pretty.string_of o (pretty_cterm @{context}))
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1721
end"
348
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1722
  "(True, (\<lambda>x. x) = (\<lambda>x. x))"}
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1723
340
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1724
  Other function produce terms that can be pattern-matched. 
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1725
  Suppose the following two theorems.
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1726
*}
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1727
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1728
lemma  
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1729
  shows foo_test1: "A \<Longrightarrow> B \<Longrightarrow> C" 
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1730
  and   foo_test2: "A \<longrightarrow> B \<longrightarrow> C" sorry
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1731
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1732
text {*
348
Christian Urban <urbanc@in.tum.de>
parents: 347
diff changeset
  1733
  We can destruct them into premises and conclusions as follows. 
340
4ddcf4980950 more work
Christian Urban <urbanc@in.tum.de>
parents: 339
diff changeset
  1734
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1735
 @{ML_response_fake [display,gray]
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1736
"let
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1737
  val ctxt = @{context}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1738
  fun prems_and_concl thm =
441
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1739
     [[Pretty.str \"Premises:\", pretty_terms ctxt (Thm.prems_of thm)], 
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1740
      [Pretty.str \"Conclusion:\", pretty_term ctxt (Thm.concl_of thm)]]
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1741
     |> map Pretty.block
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1742
     |> Pretty.chunks
Christian Urban <urbanc@in.tum.de>
parents: 440
diff changeset
  1743
     |> pwriteln
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1744
in
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1745
  prems_and_concl @{thm foo_test1};
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1746
  prems_and_concl @{thm foo_test2}
338
3bc732c9f7ff more on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 337
diff changeset
  1747
end"
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1748
"Premises: ?A, ?B
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1749
Conclusion: ?C
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1750
Premises: 
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1751
Conclusion: ?A \<longrightarrow> ?B \<longrightarrow> ?C"}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1752
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1753
  Note that in the second case, there is no premise. The reason is that @{text "\<Longrightarrow>"}
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1754
  separates premises and conclusion, while @{text "\<longrightarrow>"} is the object implication
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1755
  from HOL, which just constructs a formula.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1756
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1757
  \begin{readmore}
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
  1758
  The basic functions for theorems are defined in
337
a456a21f608a a bit more work on the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 336
diff changeset
  1759
  @{ML_file "Pure/thm.ML"}, @{ML_file "Pure/more_thm.ML"} and @{ML_file "Pure/drule.ML"}. 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1760
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  1761
388
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1762
  Although we will explain the simplifier in more detail as tactic in 
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1763
  Section~\ref{sec:simplifier}, the simplifier 
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1764
  can be used to work directly over theorems, for example to unfold definitions. To show
382
Christian Urban <urbanc@in.tum.de>
parents: 381
diff changeset
  1765
  this, we build the theorem @{term "True \<equiv> True"} (Line 1) and then 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1766
  unfold the constant @{term "True"} according to its definition (Line 2).
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1767
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1768
  @{ML_response_fake [display,gray,linenos]
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1769
  "Thm.reflexive @{cterm \"True\"}
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1770
  |> Simplifier.rewrite_rule [@{thm True_def}]
440
a0b280dd4bc7 partially moved from string_of_term to pretty_term
Christian Urban <urbanc@in.tum.de>
parents: 439
diff changeset
  1771
  |> pretty_thm @{context}
a0b280dd4bc7 partially moved from string_of_term to pretty_term
Christian Urban <urbanc@in.tum.de>
parents: 439
diff changeset
  1772
  |> pwriteln"
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1773
  "(\<lambda>x. x) = (\<lambda>x. x) \<equiv> (\<lambda>x. x) = (\<lambda>x. x)"}
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1774
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1775
  Often it is necessary to transform theorems to and from the object 
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1776
  logic, that is replacing all @{text "\<longrightarrow>"} and @{text "\<forall>"} by @{text "\<Longrightarrow>"} 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1777
  and @{text "\<And>"}, or the other way around.  A reason for such a transformation 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1778
  might be stating a definition. The reason is that definitions can only be 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1779
  stated using object logic connectives, while theorems using the connectives 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1780
  from the meta logic are more convenient for reasoning. Therefore there are
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1781
  some build in functions which help with these transformations. The function 
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1782
  @{ML_ind rulify in Object_Logic} 
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1783
  replaces all object connectives by equivalents in the meta logic. For example
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1784
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1785
  @{ML_response_fake [display, gray]
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1786
  "Object_Logic.rulify @{thm foo_test2}"
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1787
  "\<lbrakk>?A; ?B\<rbrakk> \<Longrightarrow> ?C"}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1788
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1789
  The transformation in the other direction can be achieved with function
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1790
  @{ML_ind atomize in Object_Logic} and the following code.
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1791
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1792
  @{ML_response_fake [display,gray]
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1793
  "let
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1794
  val thm = @{thm foo_test1}
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1795
  val meta_eq = Object_Logic.atomize (cprop_of thm)
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1796
in
458
242e81f4d461 updated to post-2011 Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 451
diff changeset
  1797
  Raw_Simplifier.rewrite_rule [meta_eq] thm
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1798
end"
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1799
  "?A \<longrightarrow> ?B \<longrightarrow> ?C"}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1800
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1801
  In this code the function @{ML atomize in Object_Logic} produces 
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1802
  a meta-equation between the given theorem and the theorem transformed
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1803
  into the object logic. The result is the theorem with object logic 
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1804
  connectives. However, in order to completely transform a theorem
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1805
  involving meta variables, such as @{thm [source] list.induct}, which 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1806
  is of the form 
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1807
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1808
  @{thm [display] list.induct}
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1809
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1810
  we have to first abstract over the meta variables @{text "?P"} and 
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1811
  @{text "?list"}. For this we can use the function 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1812
  @{ML_ind forall_intr_vars in Drule}. This allows us to implement the
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1813
  following function for atomizing a theorem.
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1814
*}
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1815
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1816
ML %grayML{*fun atomize_thm thm =
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1817
let
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1818
  val thm' = forall_intr_vars thm
418
1d1e4cda8c54 updated to new isabelle
Christian Urban <urbanc@in.tum.de>
parents: 416
diff changeset
  1819
  val thm'' = Object_Logic.atomize (cprop_of thm')
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1820
in
458
242e81f4d461 updated to post-2011 Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 451
diff changeset
  1821
  Raw_Simplifier.rewrite_rule [thm''] thm'
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1822
end*}
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1823
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1824
text {*
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1825
  This function produces for the theorem @{thm [source] list.induct}
347
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1826
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1827
  @{ML_response_fake [display, gray]
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1828
  "atomize_thm @{thm list.induct}"
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1829
  "\<forall>P list. P [] \<longrightarrow> (\<forall>a list. P list \<longrightarrow> P (a # list)) \<longrightarrow> P list"}
01e71cddf6a3 slightly tuned
Christian Urban <urbanc@in.tum.de>
parents: 346
diff changeset
  1830
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1831
  Theorems can also be produced from terms by giving an explicit proof. 
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1832
  One way to achieve this is by using the function @{ML_ind prove in Goal}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1833
  in the structure @{ML_struct Goal}. For example below we use this function
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1834
  to prove the term @{term "P \<Longrightarrow> P"}.
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1835
  
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1836
  @{ML_response_fake [display,gray]
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1837
  "let
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1838
  val trm = @{term \"P \<Longrightarrow> P::bool\"}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1839
  val tac = K (atac 1)
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1840
in
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1841
  Goal.prove @{context} [\"P\"] [] trm tac
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1842
end"
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1843
  "?P \<Longrightarrow> ?P"}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1844
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1845
  This function takes first a context and second a list of strings. This list
359
be6538c7b41d polished
Christian Urban <urbanc@in.tum.de>
parents: 358
diff changeset
  1846
  specifies which variables should be turned into schematic variables once the term
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1847
  is proved (in this case only @{text "\"P\""}).  The fourth argument is the term to be 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1848
  proved. The fifth is a corresponding proof given in form of a tactic (we explain 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1849
  tactics in Chapter~\ref{chp:tactical}). In the code above, the tactic proves the 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1850
  theorem by assumption. 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1851
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1852
  There is also the possibility of proving multiple goals at the same time
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1853
  using the function @{ML_ind prove_multi in Goal}. For this let us define the
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1854
  following three helper functions.
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1855
*}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1856
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1857
ML %grayML{*fun rep_goals i = replicate i @{prop "f x = f x"}
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1858
fun rep_tacs i = replicate i (rtac @{thm refl})
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1859
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1860
fun multi_test ctxt i =
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1861
  Goal.prove_multi ctxt ["f", "x"] [] (rep_goals i) 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1862
    (K ((Goal.conjunction_tac THEN' RANGE (rep_tacs i)) 1))*}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1863
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1864
text {*
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1865
  With them we can now produce three theorem instances of the 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1866
  proposition.
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1867
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1868
  @{ML_response_fake [display, gray]
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1869
  "multi_test @{context} 3"
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1870
  "[\"?f ?x = ?f ?x\", \"?f ?x = ?f ?x\", \"?f ?x = ?f ?x\"]"}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1871
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1872
  However you should be careful with @{ML prove_multi in Goal} and very
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1873
  large goals. If you increase the counter in the code above to @{text 3000}, 
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1874
  you will notice that takes approximately ten(!) times longer than
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1875
  using @{ML map} and @{ML prove in Goal}.
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1876
*}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1877
  
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  1878
ML %grayML{*let 
448
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1879
  fun test_prove ctxt thm =
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1880
    Goal.prove ctxt ["P", "x"] [] thm (K (rtac @{thm refl} 1))
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1881
in
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1882
  map (test_prove @{context}) (rep_goals 3000)
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1883
end*}
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1884
957f69b9b7df added something about Goal.prove_multi
Christian Urban <urbanc@in.tum.de>
parents: 446
diff changeset
  1885
text {*
388
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1886
  While the LCF-approach of going through interfaces ensures soundness in Isabelle, there
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1887
  is the function @{ML_ind make_thm in Skip_Proof} in the structure 
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1888
  @{ML_struct Skip_Proof} that allows us to turn any proposition into a theorem.
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1889
  Potentially making the system unsound.  This is sometimes useful for developing 
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1890
  purposes, or when explicit proof construction should be omitted due to performace 
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1891
  reasons. An example of this function is as follows:
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1892
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1893
  @{ML_response_fake [display, gray]
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1894
  "Skip_Proof.make_thm @{theory} @{prop \"True = False\"}"
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1895
  "True = False"}
0b337dedc306 added Skip_Proof.mk_thm and some pointers about concurrency
Christian Urban <urbanc@in.tum.de>
parents: 387
diff changeset
  1896
415
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1897
  \begin{readmore}
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1898
  Functions that setup goal states and prove theorems are implemented in 
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1899
  @{ML_file "Pure/goal.ML"}. A function and a tactic that allow one to
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1900
  skip proofs of theorems are implemented in @{ML_file "Pure/Isar/skip_proof.ML"}.
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1901
  \end{readmore}
dc76ba24e81b a bit more tuning
Christian Urban <urbanc@in.tum.de>
parents: 414
diff changeset
  1902
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1903
  Theorems also contain auxiliary data, such as the name of the theorem, its
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1904
  kind, the names for cases and so on. This data is stored in a string-string
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1905
  list and can be retrieved with the function @{ML_ind get_tags in
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1906
  Thm}. Assume you prove the following lemma.
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1907
*}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1908
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1909
lemma foo_data: 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1910
  shows "P \<Longrightarrow> P \<Longrightarrow> P" by assumption
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1911
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1912
text {*
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1913
  The auxiliary data of this lemma can be retrieved using the function 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1914
  @{ML_ind get_tags in Thm}. So far the the auxiliary data of this lemma is 
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1915
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1916
  @{ML_response_fake [display,gray]
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1917
  "Thm.get_tags @{thm foo_data}"
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1918
  "[(\"name\", \"General.foo_data\"), (\"kind\", \"lemma\")]"}
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1919
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1920
  consisting of a name and a kind.  When we store lemmas in the theorem database, 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1921
  we might want to explicitly extend this data by attaching case names to the 
375
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
  1922
  two premises of the lemma.  This can be done with the function @{ML_ind name in Rule_Cases}
92f7328dc5cc added type work and updated to Isabelle and poly 5.3
Christian Urban <urbanc@in.tum.de>
parents: 374
diff changeset
  1923
  from the structure @{ML_struct Rule_Cases}.
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1924
*}
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1925
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1926
local_setup %gray {*
394
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1927
  Local_Theory.note ((@{binding "foo_data'"}, []), 
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1928
    [(Rule_Cases.name ["foo_case_one", "foo_case_two"] 
0019ebf76e10 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 393
diff changeset
  1929
       @{thm foo_data})]) #> snd *}
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1930
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1931
text {*
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1932
  The data of the theorem @{thm [source] foo_data'} is then as follows:
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1933
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1934
  @{ML_response_fake [display,gray]
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1935
  "Thm.get_tags @{thm foo_data'}"
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1936
  "[(\"name\", \"General.foo_data'\"), (\"kind\", \"lemma\"), 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1937
 (\"case_names\", \"foo_case_one;foo_case_two\")]"}
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1938
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1939
  You can observe the case names of this lemma on the user level when using 
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  1940
  the proof methods @{text cases} and @{text induct}. In the proof below
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1941
*}
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1942
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  1943
lemma
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1944
shows "Q \<Longrightarrow> Q \<Longrightarrow> Q"
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1945
proof (cases rule: foo_data')
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1946
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1947
(*<*)oops(*>*)
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1948
text_raw{*
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1949
\begin{tabular}{@ {}l}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1950
\isacommand{print\_cases}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1951
@{text "> cases:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1952
@{text ">   foo_case_one:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1953
@{text ">     let \"?case\" = \"?P\""}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1954
@{text ">   foo_case_two:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1955
@{text ">     let \"?case\" = \"?P\""}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1956
\end{tabular}*}
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1957
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1958
text {*
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1959
  we can proceed by analysing the cases @{text "foo_case_one"} and 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  1960
  @{text "foo_case_two"}. While if the theorem has no names, then
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1961
  the cases have standard names @{text 1}, @{text 2} and so 
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1962
  on. This can be seen in the proof below.
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1963
*}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1964
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1965
lemma
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1966
shows "Q \<Longrightarrow> Q \<Longrightarrow> Q"
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  1967
proof (cases rule: foo_data)
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1968
342
930b1308fd96 fixed glitch with tocibind
Christian Urban <urbanc@in.tum.de>
parents: 341
diff changeset
  1969
(*<*)oops(*>*)
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1970
text_raw{*
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1971
\begin{tabular}{@ {}l}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1972
\isacommand{print\_cases}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1973
@{text "> cases:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1974
@{text ">   1:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1975
@{text ">     let \"?case\" = \"?P\""}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1976
@{text ">   2:"}\\
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1977
@{text ">     let \"?case\" = \"?P\""}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1978
\end{tabular}*}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  1979
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1980
 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1981
text {*
533
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1982
  Sometimes one wants to know the theorems that are involved in
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1983
  proving a theorem, especially when the proof is by @{text
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1984
  auto}. These theorems can be obtained by introspecting the proved theorem.
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1985
  To introspect a theorem, let us define the following three functions
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1986
  that analyse the @{ML_type_ind proof_body} data-structure from the
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  1987
  structure @{ML_struct Proofterm}.
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1988
*}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1989
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1990
ML %grayML{*fun pthms_of (PBody {thms, ...}) = map #2 thms 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1991
val get_names = map #1 o pthms_of 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1992
val get_pbodies = map (Future.join o #3) o pthms_of *}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1993
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1994
text {* 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1995
  To see what their purpose is, consider the following three short proofs.
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1996
*}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1997
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1998
lemma my_conjIa:
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  1999
shows "A \<and> B \<Longrightarrow> A \<and> B"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2000
apply(rule conjI)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2001
apply(drule conjunct1)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2002
apply(assumption)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2003
apply(drule conjunct2)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2004
apply(assumption)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2005
done
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2006
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2007
lemma my_conjIb:
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2008
shows "A \<and> B \<Longrightarrow> A \<and> B"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2009
apply(assumption)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2010
done
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2011
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2012
lemma my_conjIc:
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2013
shows "A \<and> B \<Longrightarrow> A \<and> B"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2014
apply(auto)
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2015
done
341
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  2016
62dea749d5ed more work on theorem section
Christian Urban <urbanc@in.tum.de>
parents: 340
diff changeset
  2017
text {*
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2018
  While the information about which theorems are used is obvious in
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2019
  the first two proofs, it is not obvious in the third, because of the
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2020
  @{text auto}-step.  Fortunately, ``behind'' every proved theorem is
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2021
  a proof-tree that records all theorems that are employed for
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2022
  establishing this theorem.  We can traverse this proof-tree
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2023
  extracting this information.  Let us first extract the name of the
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2024
  established theorem. This can be done with
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2025
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2026
  @{ML_response [display,gray]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2027
  "@{thm my_conjIa}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2028
  |> Thm.proof_body_of
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2029
  |> get_names"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2030
  "[\"Essential.my_conjIa\"]"}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2031
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2032
  whereby @{text "Essential"} refers to the theory name in which
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2033
  we established the theorem @{thm [source] my_conjIa}. The function @{ML_ind
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2034
  proof_body_of in Thm} returns a part of the data that is stored in a
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2035
  theorem.  Notice that the first proof above references
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2036
  three theorems, namely @{thm [source] conjI}, @{thm [source] conjunct1} 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2037
  and @{thm [source] conjunct2}. We can obtain them by descending into the
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2038
  first level of the proof-tree, as follows.
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2039
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2040
  @{ML_response [display,gray]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2041
  "@{thm my_conjIa}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2042
  |> Thm.proof_body_of
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2043
  |> get_pbodies
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2044
  |> map get_names
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2045
  |> List.concat"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2046
  "[\"HOL.conjunct2\", \"HOL.conjunct1\", \"HOL.conjI\", \"Pure.protectD\", 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2047
  \"Pure.protectI\"]"}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2048
533
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2049
  The theorems @{thm [source] Pure.protectD} and @{thm [source]
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2050
  Pure.protectI} that are internal theorems are always part of a
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2051
  proof in Isabelle. Note also that applications of @{text assumption} do not
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2052
  count as a separate theorem, as you can see in the following code.
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2053
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2054
  @{ML_response [display,gray]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2055
  "@{thm my_conjIb}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2056
  |> Thm.proof_body_of
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2057
  |> get_pbodies
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2058
  |> map get_names
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2059
  |> List.concat"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2060
  "[\"Pure.protectD\", \"Pure.protectI\"]"}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2061
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2062
  Interestingly, but not surprisingly, the proof of @{thm [source]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2063
  my_conjIc} procceeds quite differently from @{thm [source] my_conjIa}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2064
  and @{thm [source] my_conjIb}, as can be seen by the theorems that
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2065
  are returned for @{thm [source] my_conjIc}.
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2066
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2067
  @{ML_response [display,gray]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2068
  "@{thm my_conjIc}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2069
  |> Thm.proof_body_of
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2070
  |> get_pbodies
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2071
  |> map get_names
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2072
  |> List.concat"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2073
  "[\"HOL.Eq_TrueI\", \"HOL.simp_thms_25\", \"HOL.eq_reflection\",
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2074
  \"HOL.conjunct2\", \"HOL.conjunct1\", \"HOL.TrueI\", \"Pure.protectD\",
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2075
  \"Pure.protectI\"]"}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2076
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2077
  Of course we can also descend into the second level of the tree 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2078
  ``behind'' @{thm [source] my_conjIa} say, which
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2079
  means we obtain the theorems that are used in order to prove
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2080
  @{thm [source] conjunct1}, @{thm [source] conjunct2} and @{thm [source] conjI}.
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2081
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2082
  @{ML_response [display, gray]
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2083
  "@{thm my_conjIa}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2084
  |> Thm.proof_body_of
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2085
  |> get_pbodies
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2086
  |> map get_pbodies
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2087
  |> (map o map) get_names
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2088
  |> List.concat
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2089
  |> List.concat
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2090
  |> duplicates (op=)"
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2091
  "[\"HOL.spec\", \"HOL.and_def\", \"HOL.mp\", \"HOL.impI\", \"Pure.protectD\",
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2092
  \"Pure.protectI\"]"}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2093
533
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2094
  \begin{exercise}
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2095
  Have a look at the theorems that are used when a lemma is ``proved''
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2096
  by \isacommand{sorry}? 
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2097
  \end{exercise}
Christian Urban <urbanc@in.tum.de>
parents: 530
diff changeset
  2098
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2099
  \begin{readmore} 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2100
  The data-structure @{ML_type proof_body} is implemented
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2101
  in the file @{ML_file "Pure/proofterm.ML"}. The implementation 
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2102
  of theorems and related functions are in @{ML_file "Pure/thm.ML"}.  
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2103
  \end{readmore}
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2104
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2105
  One great feature of Isabelle is its document preparation system, where
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2106
  proved theorems can be quoted in documents referencing directly their
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2107
  formalisation. This helps tremendously to minimise cut-and-paste errors. However,
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2108
  sometimes the verbatim quoting is not what is wanted or what can be shown to
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2109
  readers. For such situations Isabelle allows the installation of \emph{\index*{theorem 
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2110
  styles}}. These are, roughly speaking, functions from terms to terms. The input 
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2111
  term stands for the theorem to be presented; the output can be constructed to
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2112
  ones wishes.  Let us, for example, assume we want to quote theorems without
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2113
  leading @{text \<forall>}-quantifiers. For this we can implement the following function 
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
  2114
  that strips off @{text "\<forall>"}s.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2115
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2116
358
9cf3bc448210 some polishing
Christian Urban <urbanc@in.tum.de>
parents: 356
diff changeset
  2117
ML %linenosgray{*fun strip_allq (Const (@{const_name "All"}, _) $ Abs body) = 
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2118
      Term.dest_abs body |> snd |> strip_allq
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2119
  | strip_allq (Const (@{const_name "Trueprop"}, _) $ t) = 
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2120
      strip_allq t
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2121
  | strip_allq t = t*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2122
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2123
text {*
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2124
  We use in Line 2 the function @{ML_ind dest_abs in Term} for deconstructing abstractions,
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2125
  since this function deals correctly with potential name clashes. This function produces
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2126
  a pair consisting of the variable and the body of the abstraction. We are only interested
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2127
  in the body, which we feed into the recursive call. In Line 3 and 4, we also
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2128
  have to explicitly strip of the outermost @{term Trueprop}-coercion. Now we can 
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2129
  install this function as the theorem style named @{text "my_strip_allq"}. 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2130
*}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2131
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  2132
setup %gray{* 
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2133
  Term_Style.setup "my_strip_allq" (Scan.succeed (K strip_allq)) 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2134
*}
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2135
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2136
text {*
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2137
  We can test this theorem style with the following theorem
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2138
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2139
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2140
theorem style_test:
529
13d7ea419c5f moved the introspection part into the theorem section
Christian Urban <urbanc@in.tum.de>
parents: 517
diff changeset
  2141
shows "\<forall>x y z. (x, x) = (y, z)" sorry
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2142
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2143
text {*
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2144
  Now printing out in a document the theorem @{thm [source] style_test} normally
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2145
  using @{text "@{thm \<dots>}"} produces
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2146
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2147
  \begin{isabelle}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2148
  \begin{graybox}
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2149
  @{text "@{thm style_test}"}\\
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2150
  @{text ">"}~@{thm style_test}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2151
  \end{graybox}
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2152
  \end{isabelle}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2153
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2154
  as expected. But with the theorem style @{text "@{thm (my_strip_allq) \<dots>}"} 
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2155
  we obtain
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2156
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2157
  \begin{isabelle}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2158
  \begin{graybox}
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2159
  @{text "@{thm (my_strip_allq) style_test}"}\\
400
Christian Urban <urbanc@in.tum.de>
parents: 399
diff changeset
  2160
  @{text ">"}~@{thm (my_strip_allq) style_test}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2161
  \end{graybox}
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2162
  \end{isabelle}
352
9f12e53eb121 polished theorem section
Christian Urban <urbanc@in.tum.de>
parents: 351
diff changeset
  2163
  
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2164
  without the leading quantifiers. We can improve this theorem style by explicitly 
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2165
  giving a list of strings that should be used for the replacement of the
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2166
  variables. For this we implement the function which takes a list of strings
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2167
  and uses them as name in the outermost abstractions.
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2168
*}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2169
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2170
ML %grayML{*fun rename_allq [] t = t
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2171
  | rename_allq (x::xs) (Const (@{const_name "All"}, U) $ Abs (_, T, t)) = 
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2172
      Const (@{const_name "All"}, U) $ Abs (x, T, rename_allq xs t)
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2173
  | rename_allq xs (Const (@{const_name "Trueprop"}, U) $ t) =
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2174
      rename_allq xs t
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2175
  | rename_allq _ t = t*}
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2176
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2177
text {*
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2178
  We can now install a the modified theorem style as follows
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2179
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2180
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2181
setup %gray {* let
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2182
  val parser = Scan.repeat Args.name
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2183
  fun action xs = K (rename_allq xs #> strip_allq)
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2184
in
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2185
  Term_Style.setup "my_strip_allq2" (parser >> action)
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2186
end *}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2187
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2188
text {*
355
42a1c230daff added something about add_thms_dynamic
Christian Urban <urbanc@in.tum.de>
parents: 354
diff changeset
  2189
  The parser reads a list of names. In the function @{text action} we first
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2190
  call @{ML rename_allq} with the parsed list, then we call @{ML strip_allq}
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2191
  on the resulting term. We can now suggest, for example, two variables for
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2192
  stripping off the first two @{text \<forall>}-quantifiers.
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2193
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2194
  \begin{isabelle}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2195
  \begin{graybox}
354
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2196
  @{text "@{thm (my_strip_allq2 x' x'') style_test}"}\\
544c149005cf some slight polishing
Christian Urban <urbanc@in.tum.de>
parents: 353
diff changeset
  2197
  @{text ">"}~@{thm (my_strip_allq2 x' x'') style_test}
502
Christian Urban <urbanc@in.tum.de>
parents: 482
diff changeset
  2198
  \end{graybox}
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2199
  \end{isabelle}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2200
404
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2201
  Such styles allow one to print out theorems in documents formatted to 
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2202
  ones heart content. The styles can also be used in the document 
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2203
  antiquotations @{text "@{prop ...}"}, @{text "@{term_type ...}"}
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2204
  and @{text "@{typeof ...}"}.
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2205
3d27d77c351f added RANGE
Christian Urban <urbanc@in.tum.de>
parents: 403
diff changeset
  2206
  Next we explain theorem attributes, which is another
353
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2207
  mechanism for dealing with theorems.
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2208
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2209
  \begin{readmore}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2210
  Theorem styles are implemented in @{ML_file "Pure/Thy/term_style.ML"}.
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2211
  \end{readmore}
e73ccbed776e completed section on theorems
Christian Urban <urbanc@in.tum.de>
parents: 352
diff changeset
  2212
*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2213
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2214
section {* Theorem Attributes\label{sec:attributes} *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2215
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2216
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2217
  Theorem attributes are @{text "[symmetric]"}, @{text "[THEN \<dots>]"}, @{text
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2218
  "[simp]"} and so on. Such attributes are \emph{neither} tags \emph{nor} flags
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2219
  annotated to theorems, but functions that do further processing of 
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2220
  theorems. In particular, it is not possible to find out
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2221
  what are all theorems that have a given attribute in common, unless of course
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2222
  the function behind the attribute stores the theorems in a retrievable 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2223
  data structure. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2224
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2225
  If you want to print out all currently known attributes a theorem can have, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2226
  you can use the Isabelle command
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2227
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2228
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2229
  \isacommand{print\_attributes}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2230
  @{text "> COMP:  direct composition with rules (no lifting)"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2231
  @{text "> HOL.dest:  declaration of Classical destruction rule"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2232
  @{text "> HOL.elim:  declaration of Classical elimination rule"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2233
  @{text "> \<dots>"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2234
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2235
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2236
  The theorem attributes fall roughly into two categories: the first category manipulates
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2237
  theorems (for example @{text "[symmetric]"} and @{text "[THEN \<dots>]"}), and the second
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2238
  stores theorems somewhere as data (for example @{text "[simp]"}, which adds
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2239
  theorems to the current simpset).
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2240
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2241
  To explain how to write your own attribute, let us start with an extremely simple 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2242
  version of the attribute @{text "[symmetric]"}. The purpose of this attribute is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2243
  to produce the ``symmetric'' version of an equation. The main function behind 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2244
  this attribute is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2245
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2246
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2247
ML %grayML{*val my_symmetric = Thm.rule_attribute (fn _ => fn thm => thm RS @{thm sym})*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2248
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2249
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2250
  where the function @{ML_ind  rule_attribute in Thm} expects a function taking a 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2251
  context (which we ignore in the code above) and a theorem (@{text thm}), and 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2252
  returns another theorem (namely @{text thm} resolved with the theorem 
363
Christian Urban <urbanc@in.tum.de>
parents: 361
diff changeset
  2253
  @{thm [source] sym}: @{thm sym[no_vars]}; the function @{ML_ind RS in Drule} 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2254
  is explained in Section~\ref{sec:simpletacs}). The function 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2255
  @{ML rule_attribute in Thm} then returns  an attribute.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2256
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2257
  Before we can use the attribute, we need to set it up. This can be done
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2258
  using the Isabelle command \isacommand{attribute\_setup} as follows:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2259
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2260
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2261
attribute_setup %gray my_sym = 
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2262
  {* Scan.succeed my_symmetric *} "applying the sym rule"
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2263
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2264
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2265
  Inside the @{text "\<verbopen> \<dots> \<verbclose>"}, we have to specify a parser
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2266
  for the theorem attribute. Since the attribute does not expect any further 
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2267
  arguments (unlike @{text "[THEN \<dots>]"}, for instance), we use the parser @{ML
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2268
  Scan.succeed}. An example for the attribute @{text "[my_sym]"} is the proof
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2269
*} 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2270
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2271
lemma test[my_sym]: "2 = Suc (Suc 0)" by simp
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2272
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2273
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2274
  which stores the theorem @{thm test} under the name @{thm [source] test}. You
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2275
  can see this, if you query the lemma: 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2276
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2277
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2278
  \isacommand{thm}~@{text "test"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2279
  @{text "> "}~@{thm test}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2280
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2281
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2282
  We can also use the attribute when referring to this theorem:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2283
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2284
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2285
  \isacommand{thm}~@{text "test[my_sym]"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2286
  @{text "> "}~@{thm test[my_sym]}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2287
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2288
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2289
  An alternative for setting up an attribute is the function @{ML_ind  setup in Attrib}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2290
  So instead of using \isacommand{attribute\_setup}, you can also set up the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2291
  attribute as follows:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2292
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2293
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2294
ML %grayML{*Attrib.setup @{binding "my_sym"} (Scan.succeed my_symmetric)
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2295
  "applying the sym rule" *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2296
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2297
text {*
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2298
  This gives a function from @{ML_type "theory -> theory"}, which
361
Christian Urban <urbanc@in.tum.de>
parents: 360
diff changeset
  2299
  can be used for example with \isacommand{setup} or with
368
b1a458a03a8e new parts in the tactical section
Christian Urban <urbanc@in.tum.de>
parents: 363
diff changeset
  2300
  @{ML "Context.>> o Context.map_theory"}.\footnote{\bf FIXME: explain what happens here.}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2301
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2302
  As an example of a slightly more complicated theorem attribute, we implement 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2303
  our own version of @{text "[THEN \<dots>]"}. This attribute will take a list of theorems
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2304
  as argument and resolve the theorem with this list (one theorem 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2305
  after another). The code for this attribute is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2306
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2307
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2308
ML %grayML{*fun MY_THEN thms = 
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2309
let
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2310
  fun RS_rev thm1 thm2 = thm2 RS thm1
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2311
in
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2312
  Thm.rule_attribute (fn _ => fn thm => fold RS_rev thms thm)
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2313
end*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2314
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2315
text {* 
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2316
  where for convenience we define the reverse and curried version of @{ML RS}. 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2317
  The setup of this theorem attribute uses the parser @{ML thms in Attrib}, 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2318
  which parses a list of theorems. 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2319
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2320
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2321
attribute_setup %gray MY_THEN = {* Attrib.thms >> MY_THEN *} 
356
43df2d59fb98 updated to new Isabelle
Christian Urban <urbanc@in.tum.de>
parents: 355
diff changeset
  2322
  "resolving the list of theorems with the theorem"
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2323
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2324
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2325
  You can, for example, use this theorem attribute to turn an equation into a 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2326
  meta-equation:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2327
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2328
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2329
  \isacommand{thm}~@{text "test[MY_THEN eq_reflection]"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2330
  @{text "> "}~@{thm test[MY_THEN eq_reflection]}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2331
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2332
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2333
  If you need the symmetric version as a meta-equation, you can write
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2334
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2335
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2336
  \isacommand{thm}~@{text "test[MY_THEN sym eq_reflection]"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2337
  @{text "> "}~@{thm test[MY_THEN sym eq_reflection]}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2338
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2339
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2340
  It is also possible to combine different theorem attributes, as in:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2341
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2342
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2343
  \isacommand{thm}~@{text "test[my_sym, MY_THEN eq_reflection]"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2344
  @{text "> "}~@{thm test[my_sym, MY_THEN eq_reflection]}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2345
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2346
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2347
  However, here also a weakness of the concept
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2348
  of theorem attributes shows through: since theorem attributes can be
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2349
  arbitrary functions, they do not commute in general. If you try
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2350
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2351
  \begin{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2352
  \isacommand{thm}~@{text "test[MY_THEN eq_reflection, my_sym]"}\\
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2353
  @{text "> "}~@{text "exception THM 1 raised: RSN: no unifiers"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2354
  \end{isabelle}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2355
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2356
  you get an exception indicating that the theorem @{thm [source] sym}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2357
  does not resolve with meta-equations. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2358
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2359
  The purpose of @{ML_ind rule_attribute in Thm} is to directly manipulate
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2360
  theorems.  Another usage of theorem attributes is to add and delete theorems
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2361
  from stored data.  For example the theorem attribute @{text "[simp]"} adds
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2362
  or deletes a theorem from the current simpset. For these applications, you
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2363
  can use @{ML_ind declaration_attribute in Thm}. To illustrate this function,
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2364
  let us introduce a theorem list.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2365
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2366
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2367
ML %grayML{*structure MyThms = Named_Thms
481
32323727af96 updated
Christian Urban <urbanc@in.tum.de>
parents: 469
diff changeset
  2368
  (val name = @{binding "attr_thms"} 
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2369
   val description = "Theorems for an Attribute") *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2370
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2371
text {* 
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2372
  We are going to modify this list by adding and deleting theorems.
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2373
  For this we use the two functions @{ML MyThms.add_thm} and
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2374
  @{ML MyThms.del_thm}. You can turn them into attributes 
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2375
  with the code
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2376
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2377
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2378
ML %grayML{*val my_add = Thm.declaration_attribute MyThms.add_thm
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2379
val my_del = Thm.declaration_attribute MyThms.del_thm *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2380
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2381
text {* 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2382
  and set up the attributes as follows
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2383
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2384
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2385
attribute_setup %gray my_thms = {* Attrib.add_del my_add my_del *} 
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2386
  "maintaining a list of my_thms" 
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2387
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2388
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2389
  The parser @{ML_ind  add_del in Attrib} is a predefined parser for 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2390
  adding and deleting lemmas. Now if you prove the next lemma 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2391
  and attach to it the attribute @{text "[my_thms]"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2392
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2393
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2394
lemma trueI_2[my_thms]: "True" by simp
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2395
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2396
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2397
  then you can see it is added to the initially empty list.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2398
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2399
  @{ML_response_fake [display,gray]
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2400
  "MyThms.get @{context}" 
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2401
  "[\"True\"]"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2402
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2403
  You can also add theorems using the command \isacommand{declare}.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2404
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2405
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2406
declare test[my_thms] trueI_2[my_thms add]
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2407
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2408
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2409
  With this attribute, the @{text "add"} operation is the default and does 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2410
  not need to be explicitly given. These three declarations will cause the 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2411
  theorem list to be updated as:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2412
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2413
  @{ML_response_fake [display,gray]
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2414
  "MyThms.get @{context}"
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2415
  "[\"True\", \"Suc (Suc 0) = 2\"]"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2416
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2417
  The theorem @{thm [source] trueI_2} only appears once, since the 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2418
  function @{ML_ind  add_thm in Thm} tests for duplicates, before extending
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2419
  the list. Deletion from the list works as follows:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2420
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2421
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2422
declare test[my_thms del]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2423
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2424
text {* After this, the theorem list is again: 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2425
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2426
  @{ML_response_fake [display,gray]
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2427
  "MyThms.get @{context}"
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2428
  "[\"True\"]"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2429
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2430
  We used in this example two functions declared as @{ML_ind
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2431
  declaration_attribute in Thm}, but there can be any number of them. We just
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2432
  have to change the parser for reading the arguments accordingly.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2433
329
5dffcab68680 more work
Christian Urban <urbanc@in.tum.de>
parents: 328
diff changeset
  2434
  \footnote{\bf FIXME What are: @{text "theory_attributes"}, @{text "proof_attributes"}?}
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2435
  \footnote{\bf FIXME readmore}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2436
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2437
  \begin{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2438
  FIXME: @{ML_file "Pure/more_thm.ML"}; parsers for attributes is in 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2439
  @{ML_file "Pure/Isar/attrib.ML"}...also explained in the chapter about
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2440
  parsing.
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2441
  \end{readmore}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2442
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2443
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2444
section {* Pretty-Printing\label{sec:pretty} *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2445
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2446
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2447
  So far we printed out only plain strings without any formatting except for
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2448
  occasional explicit line breaks using @{text [quotes] "\\n"}. This is
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2449
  sufficient for ``quick-and-dirty'' printouts. For something more
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2450
  sophisticated, Isabelle includes an infrastructure for properly formatting
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2451
  text. Most of its functions do not operate on @{ML_type string}s, but on
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2452
  instances of the pretty type:
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2453
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2454
  @{ML_type_ind [display, gray] "Pretty.T"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2455
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2456
  The function @{ML str in Pretty} transforms a (plain) string into such a pretty 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2457
  type. For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2458
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2459
  @{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2460
  "Pretty.str \"test\"" "String (\"test\", 4)"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2461
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2462
  where the result indicates that we transformed a string with length 4. Once
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2463
  you have a pretty type, you can, for example, control where linebreaks may
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2464
  occur in case the text wraps over a line, or with how much indentation a
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2465
  text should be printed.  However, if you want to actually output the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2466
  formatted text, you have to transform the pretty type back into a @{ML_type
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2467
  string}. This can be done with the function @{ML_ind  string_of in Pretty}. In what
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2468
  follows we will use the following wrapper function for printing a pretty
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2469
  type:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2470
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2471
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2472
ML %grayML{*fun pprint prt = tracing (Pretty.string_of prt)*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2473
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2474
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2475
  The point of the pretty-printing infrastructure is to give hints about how to
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2476
  layout text and let Isabelle do the actual layout. Let us first explain
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2477
  how you can insert places where a line break can occur. For this assume the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2478
  following function that replicates a string n times:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2479
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2480
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2481
ML %grayML{*fun rep n str = implode (replicate n str) *}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2482
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2483
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2484
  and suppose we want to print out the string:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2485
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2486
517
d8c376662bb4 removed special ML-setup and replaced it by explicit markups (i.e., %grayML)
Christian Urban <urbanc@in.tum.de>
parents: 513
diff changeset
  2487
ML %grayML{*val test_str = rep 8 "fooooooooooooooobaaaaaaaaaaaar "*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2488
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2489
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2490
  We deliberately chose a large string so that it spans over more than one line. 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2491
  If we print out the string using the usual ``quick-and-dirty'' method, then
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2492
  we obtain the ugly output:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2493
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2494
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2495
"tracing test_str"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2496
"fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar foooooooooo
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2497
ooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaa
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2498
aaaaaaar fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar fo
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2499
oooooooooooooobaaaaaaaaaaaar"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2500
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2501
  We obtain the same if we just use the function @{ML pprint}.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2502
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2503
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2504
"pprint (Pretty.str test_str)"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2505
"fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar foooooooooo
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2506
ooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaa
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2507
aaaaaaar fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar fo
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2508
oooooooooooooobaaaaaaaaaaaar"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2509
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2510
  However by using pretty types you have the ability to indicate possible
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2511
  linebreaks for example at each whitespace. You can achieve this with the
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2512
  function @{ML_ind breaks in Pretty}, which expects a list of pretty types
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2513
  and inserts a possible line break in between every two elements in this
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2514
  list. To print this list of pretty types as a single string, we concatenate
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2515
  them with the function @{ML_ind blk in Pretty} as follows:
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2516
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2517
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2518
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2519
  val ptrs = map Pretty.str (space_explode \" \" test_str)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2520
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2521
  pprint (Pretty.blk (0, Pretty.breaks ptrs))
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2522
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2523
"fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2524
fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2525
fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2526
fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2527
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2528
  Here the layout of @{ML test_str} is much more pleasing to the 
360
Christian Urban <urbanc@in.tum.de>
parents: 359
diff changeset
  2529
  eye. The @{ML "0"} in @{ML_ind  blk in Pretty} stands for no hanging 
Christian Urban <urbanc@in.tum.de>
parents: 359
diff changeset
  2530
  indentation of the printed string. You can increase the indentation 
Christian Urban <urbanc@in.tum.de>
parents: 359
diff changeset
  2531
  and obtain
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2532
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2533
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2534
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2535
  val ptrs = map Pretty.str (space_explode \" \" test_str)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2536
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2537
  pprint (Pretty.blk (3, Pretty.breaks ptrs))
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2538
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2539
"fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2540
   fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2541
   fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2542
   fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2543
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2544
  where starting from the second line the indent is 3. If you want
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2545
  that every line starts with the same indent, you can use the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2546
  function @{ML_ind  indent in Pretty} as follows:
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2547
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2548
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2549
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2550
  val ptrs = map Pretty.str (space_explode \" \" test_str)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2551
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2552
  pprint (Pretty.indent 10 (Pretty.blk (0, Pretty.breaks ptrs)))
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2553
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2554
"          fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2555
          fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2556
          fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2557
          fooooooooooooooobaaaaaaaaaaaar fooooooooooooooobaaaaaaaaaaaar"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2558
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2559
  If you want to print out a list of items separated by commas and 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2560
  have the linebreaks handled properly, you can use the function 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2561
  @{ML_ind  commas in Pretty}. For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2562
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2563
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2564
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2565
  val ptrs = map (Pretty.str o string_of_int) (99998 upto 100020)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2566
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2567
  pprint (Pretty.blk (0, Pretty.commas ptrs))
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2568
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2569
"99998, 99999, 100000, 100001, 100002, 100003, 100004, 100005, 100006, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2570
100007, 100008, 100009, 100010, 100011, 100012, 100013, 100014, 100015, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2571
100016, 100017, 100018, 100019, 100020"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2572
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2573
  where @{ML upto} generates a list of integers. You can print out this
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2574
  list as a ``set'', that means enclosed inside @{text [quotes] "{"} and
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2575
  @{text [quotes] "}"}, and separated by commas using the function
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2576
  @{ML_ind  enum in Pretty}. For example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2577
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2578
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2579
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2580
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2581
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2582
"let
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2583
  val ptrs = map (Pretty.str o string_of_int) (99998 upto 100020)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2584
in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2585
  pprint (Pretty.enum \",\" \"{\" \"}\" ptrs)
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2586
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2587
"{99998, 99999, 100000, 100001, 100002, 100003, 100004, 100005, 100006, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2588
  100007, 100008, 100009, 100010, 100011, 100012, 100013, 100014, 100015, 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2589
  100016, 100017, 100018, 100019, 100020}"}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2590
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2591
  As can be seen, this function prints out the ``set'' so that starting 
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2592
  from the second, each new line has an indentation of 2.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2593
  
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2594
  If you print out something that goes beyond the capabilities of the
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2595
  standard functions, you can do relatively easily the formatting
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2596
  yourself. Assume you want to print out a list of items where like in ``English''
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2597
  the last two items are separated by @{text [quotes] "and"}. For this you can
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2598
  write the function
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2599
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2600
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2601
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2602
ML %linenosgray{*fun and_list [] = []
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2603
  | and_list [x] = [x]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2604
  | and_list xs = 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2605
      let 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2606
        val (front, last) = split_last xs
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2607
      in
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2608
        (Pretty.commas front) @ 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2609
        [Pretty.brk 1, Pretty.str "and", Pretty.brk 1, last]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2610
      end *}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2611
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2612
text {*
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2613
  where Line 7 prints the beginning of the list and Line
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2614
  8 the last item. We have to use @{ML "Pretty.brk 1"} in order
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2615
  to insert a space (of length 1) before the 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2616
  @{text [quotes] "and"}. This space is also a place where a line break 
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2617
  can occur. We do the same after the @{text [quotes] "and"}. This gives you
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2618
  for example
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2619
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2620
@{ML_response_fake [display,gray]
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2621
"let
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2622
  val ptrs1 = map (Pretty.str o string_of_int) (1 upto 22)
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2623
  val ptrs2 = map (Pretty.str o string_of_int) (10 upto 28)
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2624
in
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2625
  pprint (Pretty.blk (0, and_list ptrs1));
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2626
  pprint (Pretty.blk (0, and_list ptrs2))
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2627
end"
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2628
"1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21 
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2629
and 22
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2630
10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27 and
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2631
28"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2632
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2633
  Like @{ML blk in Pretty}, the function @{ML_ind chunks in Pretty} prints out 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2634
  a list of items, but automatically inserts forced breaks between each item.
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2635
  Compare
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2636
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2637
  @{ML_response_fake [display,gray]
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2638
  "let
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2639
  val a_and_b = [Pretty.str \"a\", Pretty.str \"b\"]
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2640
in
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2641
  pprint (Pretty.blk (0, a_and_b));
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2642
  pprint (Pretty.chunks a_and_b)
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2643
end"
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2644
"ab
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2645
a
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2646
b"}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2647
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2648
  The function @{ML_ind big_list in Pretty} helps with printing long lists.
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2649
  It is used for example in the command \isacommand{print\_theorems}. An
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2650
  example is as follows.
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2651
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2652
  @{ML_response_fake [display,gray]
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2653
  "let
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2654
  val pstrs = map (Pretty.str o string_of_int) (4 upto 10)
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2655
in
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2656
  pprint (Pretty.big_list \"header\" pstrs)
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2657
end"
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2658
  "header
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2659
  4
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2660
  5
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2661
  6
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2662
  7
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2663
  8
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2664
  9
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2665
  10"}
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2666
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2667
  The point of the pretty-printing functions is to conveninetly obtain 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2668
  a lay-out of terms and types that is pleasing to the eye. If we print
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2669
  out the the terms produced by the the function @{ML de_bruijn} from 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2670
  exercise~\ref{ex:debruijn} we obtain the following: 
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2671
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2672
  @{ML_response_fake [display,gray]
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2673
  "pprint (Syntax.pretty_term  @{context} (de_bruijn 4))"
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2674
  "(P 3 = P 4 \<longrightarrow> P 4 \<and> P 3 \<and> P 2 \<and> P 1) \<and>
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2675
(P 2 = P 3 \<longrightarrow> P 4 \<and> P 3 \<and> P 2 \<and> P 1) \<and>
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2676
(P 1 = P 2 \<longrightarrow> P 4 \<and> P 3 \<and> P 2 \<and> P 1) \<and> 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2677
(P 1 = P 4 \<longrightarrow> P 4 \<and> P 3 \<and> P 2 \<and> P 1) \<longrightarrow>
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2678
P 4 \<and> P 3 \<and> P 2 \<and> P 1"}
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2679
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2680
  We use the function @{ML_ind pretty_term in Syntax} for pretty-printing
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2681
  terms. Next we like to pretty-print a term and its type. For this we use the
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2682
  function @{text "tell_type"}.
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2683
*}
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2684
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2685
ML %linenosgray{*fun tell_type ctxt trm = 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2686
let
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2687
  fun pstr s = Pretty.breaks (map Pretty.str (space_explode " " s))
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2688
  val ptrm = Pretty.quote (Syntax.pretty_term ctxt trm)
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2689
  val pty  = Pretty.quote (Syntax.pretty_typ ctxt (fastype_of trm))
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2690
in
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2691
  pprint (Pretty.blk (0, 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2692
    (pstr "The term " @ [ptrm] @ pstr " has type " 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2693
      @ [pty, Pretty.str "."])))
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2694
end*}
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2695
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2696
text {*
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2697
  In Line 3 we define a function that inserts possible linebreaks in places
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2698
  where a space is. In Lines 4 and 5 we pretty-print the term and its type
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2699
  using the functions @{ML pretty_term in Syntax} and @{ML_ind 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2700
  pretty_typ in Syntax}. We also use the function @{ML_ind quote in
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2701
  Pretty} in order to enclose the term and type inside quotation marks. In
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2702
  Line 9 we add a period right after the type without the possibility of a
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2703
  line break, because we do not want that a line break occurs there.
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2704
  Now you can write
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2705
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2706
  @{ML_response_fake [display,gray]
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2707
  "tell_type @{context} @{term \"min (Suc 0)\"}"
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2708
  "The term \"min (Suc 0)\" has type \"nat \<Rightarrow> nat\"."}
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2709
  
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2710
  To see the proper line breaking, you can try out the function on a bigger term 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2711
  and type. For example:
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2712
396
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2713
  @{ML_response_fake [display,gray]
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2714
  "tell_type @{context} @{term \"op = (op = (op = (op = (op = op =))))\"}"
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2715
  "The term \"op = (op = (op = (op = (op = op =))))\" has type 
Christian Urban <urbanc@in.tum.de>
parents: 395
diff changeset
  2716
\"((((('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool) \<Rightarrow> bool) \<Rightarrow> bool) \<Rightarrow> bool) \<Rightarrow> bool\"."}
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2717
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2718
  \begin{readmore}
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2719
  The general infrastructure for pretty-printing is implemented in the file
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2720
  @{ML_file "Pure/General/pretty.ML"}. The file @{ML_file "Pure/Syntax/syntax.ML"}
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2721
  contains pretty-printing functions for terms, types, theorems and so on.
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2722
  
505
2862dacb04aa updated to Isabelle 30 November
Christian Urban <urbanc@in.tum.de>
parents: 502
diff changeset
  2723
  @{ML_file "Pure/PIDE/markup.ML"}
336
a12bb28fe2bd polished on the pretty printing section
Christian Urban <urbanc@in.tum.de>
parents: 335
diff changeset
  2724
  \end{readmore}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2725
*}
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2726
349
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2727
section {* Summary *}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2728
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2729
text {*
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2730
  \begin{conventions}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2731
  \begin{itemize}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2732
  \item Start with a proper context and then pass it around 
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2733
  through all your functions.
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2734
  \end{itemize}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2735
  \end{conventions}
9e374cd891e1 updated to Isabelle changes
Christian Urban <urbanc@in.tum.de>
parents: 348
diff changeset
  2736
*}
318
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2737
efb5fff99c96 split up the first-steps section into two chapters
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
  2738
end