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