author | Christian Urban <urbanc@in.tum.de> |
Fri, 13 Aug 2010 18:52:16 +0800 | |
changeset 447 | d21cea8e0bcf |
parent 446 | 4c32349b9875 |
child 458 | 242e81f4d461 |
permissions | -rw-r--r-- |
15
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
theory Solutions |
441 | 2 |
imports First_Steps "Recipes/Timing" |
15
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
begin |
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
|
346
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
5 |
(*<*) |
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
6 |
setup{* |
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
7 |
open_file_with_prelude |
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
8 |
"Solutions_Code.thy" |
441 | 9 |
["theory Solutions", "imports First_Steps", "begin"] |
346
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
10 |
*} |
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
11 |
(*>*) |
0fea8b7a14a1
tuned the ML-output mechanism; tuned slightly the text
Christian Urban <urbanc@in.tum.de>
parents:
329
diff
changeset
|
12 |
|
156 | 13 |
chapter {* Solutions to Most Exercises\label{ch:solutions} *} |
15
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
14 |
|
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
15 |
text {* \solution{fun:revsum} *} |
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
16 |
|
447 | 17 |
ML{*fun rev_sum |
18 |
((p as Const (@{const_name plus}, _)) $ t $ u) = p $ u $ rev_sum t |
|
271 | 19 |
| rev_sum t = t *} |
20 |
||
293
0a567f923b42
slightly changed exercises about rev_sum
Christian Urban <urbanc@in.tum.de>
parents:
272
diff
changeset
|
21 |
text {* |
316
74f0a06f751f
further polishing of index generation
Christian Urban <urbanc@in.tum.de>
parents:
314
diff
changeset
|
22 |
An alternative solution using the function @{ML_ind mk_binop in HOLogic} is: |
293
0a567f923b42
slightly changed exercises about rev_sum
Christian Urban <urbanc@in.tum.de>
parents:
272
diff
changeset
|
23 |
*} |
271 | 24 |
|
69
19106a9975c1
highligted the background of ML-code
Christian Urban <urbanc@in.tum.de>
parents:
58
diff
changeset
|
25 |
ML{*fun rev_sum t = |
47
4daf913fdbe1
hakked latex so that it does not display ML {* *}; general tuning
Christian Urban <urbanc@in.tum.de>
parents:
35
diff
changeset
|
26 |
let |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
27 |
fun dest_sum (Const (@{const_name plus}, _) $ u $ u') = u' :: dest_sum u |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
28 |
| dest_sum u = [u] |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
29 |
in |
447 | 30 |
foldl1 (HOLogic.mk_binop @{const_name plus}) (dest_sum t) |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
31 |
end *} |
15
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
32 |
|
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
33 |
text {* \solution{fun:makesum} *} |
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
34 |
|
69
19106a9975c1
highligted the background of ML-code
Christian Urban <urbanc@in.tum.de>
parents:
58
diff
changeset
|
35 |
ML{*fun make_sum t1 t2 = |
447 | 36 |
HOLogic.mk_nat (HOLogic.dest_nat t1 + HOLogic.dest_nat t2) *} |
15
9da9ba2b095b
added a solution section and some other minor additions
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
37 |
|
446
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
38 |
|
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
39 |
text {* \solution{fun:makelist} *} |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
40 |
|
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
41 |
ML{*fun mk_rev_upto i = |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
42 |
1 upto i |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
43 |
|> map (HOLogic.mk_number @{typ int}) |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
44 |
|> HOLogic.mk_list @{typ int} |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
45 |
|> curry (op $) @{term "rev :: int list \<Rightarrow> int list"}*} |
4c32349b9875
added an example to be used for conversions later on
Christian Urban <urbanc@in.tum.de>
parents:
441
diff
changeset
|
46 |
|
313
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
47 |
text {* \solution{ex:debruijn} *} |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
48 |
|
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
49 |
ML{*fun P n = @{term "P::nat \<Rightarrow> bool"} $ (HOLogic.mk_number @{typ "nat"} n) |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
50 |
|
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
51 |
fun rhs 1 = P 1 |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
52 |
| rhs n = HOLogic.mk_conj (P n, rhs (n - 1)) |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
53 |
|
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
54 |
fun lhs 1 n = HOLogic.mk_imp (HOLogic.mk_eq (P 1, P n), rhs n) |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
55 |
| lhs m n = HOLogic.mk_conj (HOLogic.mk_imp |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
56 |
(HOLogic.mk_eq (P (m - 1), P m), rhs n), lhs (m - 1) n) |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
57 |
|
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
58 |
fun de_bruijn n = |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
59 |
HOLogic.mk_Trueprop (HOLogic.mk_imp (lhs n n, rhs n))*} |
1ca2f41770cc
polished the exercises about constructing terms
Christian Urban <urbanc@in.tum.de>
parents:
312
diff
changeset
|
60 |
|
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
61 |
text {* \solution{ex:scancmts} *} |
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
62 |
|
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
63 |
ML{*val any = Scan.one (Symbol.not_eof) |
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
64 |
|
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
65 |
val scan_cmt = |
168
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
66 |
let |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
67 |
val begin_cmt = Scan.this_string "(*" |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
68 |
val end_cmt = Scan.this_string "*)" |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
69 |
in |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
70 |
begin_cmt |-- Scan.repeat (Scan.unless end_cmt any) --| end_cmt |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
71 |
>> (enclose "(**" "**)" o implode) |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
72 |
end |
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
73 |
|
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
74 |
val parser = Scan.repeat (scan_cmt || any) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
75 |
|
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
76 |
val scan_all = |
168
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
77 |
Scan.finite Symbol.stopper parser >> implode #> fst *} |
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
78 |
|
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
79 |
text {* |
58 | 80 |
By using @{text "#> fst"} in the last line, the function |
81 |
@{ML scan_all} retruns a string, instead of the pair a parser would |
|
82 |
normally return. For example: |
|
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
83 |
|
80 | 84 |
@{ML_response [display,gray] |
85 |
"let |
|
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
86 |
val input1 = (explode \"foo bar\") |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
87 |
val input2 = (explode \"foo (*test*) bar (*test*)\") |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
88 |
in |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
89 |
(scan_all input1, scan_all input2) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
90 |
end" |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
91 |
"(\"foo bar\", \"foo (**test**) bar (**test**)\")"} |
56
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
92 |
*} |
126646f2aa88
added a para on Scan.unless and an exercise about scanning comments
Christian Urban <urbanc@in.tum.de>
parents:
47
diff
changeset
|
93 |
|
391 | 94 |
text {* \solution{ex:contextfree} *} |
95 |
||
96 |
ML{*datatype expr = |
|
97 |
Number of int |
|
98 |
| Mult of expr * expr |
|
99 |
| Add of expr * expr |
|
314 | 100 |
|
391 | 101 |
fun parse_basic xs = |
426 | 102 |
(Parse.nat >> Number |
103 |
|| Parse.$$$ "(" |-- parse_expr --| Parse.$$$ ")") xs |
|
391 | 104 |
and parse_factor xs = |
426 | 105 |
(parse_basic --| Parse.$$$ "*" -- parse_factor >> Mult |
391 | 106 |
|| parse_basic) xs |
107 |
and parse_expr xs = |
|
426 | 108 |
(parse_factor --| Parse.$$$ "+" -- parse_expr >> Add |
391 | 109 |
|| parse_factor) xs*} |
110 |
||
111 |
||
407 | 112 |
text {* \solution{ex:dyckhoff} *} |
113 |
||
114 |
text {* |
|
314 | 115 |
The axiom rule can be implemented with the function @{ML atac}. The other |
116 |
rules correspond to the theorems: |
|
117 |
||
118 |
\begin{center} |
|
119 |
\begin{tabular}{cc} |
|
120 |
\begin{tabular}{rl} |
|
121 |
$\wedge_R$ & @{thm [source] conjI}\\ |
|
122 |
$\vee_{R_1}$ & @{thm [source] disjI1}\\ |
|
123 |
$\vee_{R_2}$ & @{thm [source] disjI2}\\ |
|
124 |
$\longrightarrow_R$ & @{thm [source] impI}\\ |
|
125 |
$=_R$ & @{thm [source] iffI}\\ |
|
126 |
\end{tabular} |
|
127 |
& |
|
128 |
\begin{tabular}{rl} |
|
129 |
$False$ & @{thm [source] FalseE}\\ |
|
130 |
$\wedge_L$ & @{thm [source] conjE}\\ |
|
131 |
$\vee_L$ & @{thm [source] disjE}\\ |
|
132 |
$=_L$ & @{thm [source] iffE} |
|
133 |
\end{tabular} |
|
134 |
\end{tabular} |
|
135 |
\end{center} |
|
136 |
||
137 |
For the other rules we need to prove the following lemmas. |
|
138 |
*} |
|
139 |
||
140 |
lemma impE1: |
|
141 |
shows "\<lbrakk>A \<longrightarrow> B; A; B \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R" |
|
142 |
by iprover |
|
143 |
||
144 |
lemma impE2: |
|
145 |
shows "\<lbrakk>(C \<and> D) \<longrightarrow> B; C \<longrightarrow> (D \<longrightarrow>B) \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R" |
|
447 | 146 |
and "\<lbrakk>(C \<or> D) \<longrightarrow> B; \<lbrakk>C \<longrightarrow> B; D \<longrightarrow> B\<rbrakk> \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R" |
147 |
and "\<lbrakk>(C \<longrightarrow> D) \<longrightarrow> B; D \<longrightarrow> B \<Longrightarrow> C \<longrightarrow> D; B \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R" |
|
148 |
and "\<lbrakk>(C = D) \<longrightarrow> B; (C \<longrightarrow> D) \<longrightarrow> ((D \<longrightarrow> C) \<longrightarrow> B) \<Longrightarrow> R\<rbrakk> \<Longrightarrow> R" |
|
149 |
by iprover+ |
|
314 | 150 |
|
151 |
text {* |
|
152 |
Now the tactic which applies a single rule can be implemented |
|
153 |
as follows. |
|
154 |
*} |
|
155 |
||
156 |
ML %linenosgray{*val apply_tac = |
|
157 |
let |
|
447 | 158 |
val intros = @{thms conjI disjI1 disjI2 impI iffI} |
159 |
val elims = @{thms FalseE conjE disjE iffE impE2} |
|
314 | 160 |
in |
161 |
atac |
|
162 |
ORELSE' resolve_tac intros |
|
163 |
ORELSE' eresolve_tac elims |
|
164 |
ORELSE' (etac @{thm impE1} THEN' atac) |
|
165 |
end*} |
|
166 |
||
167 |
text {* |
|
168 |
In Line 11 we apply the rule @{thm [source] impE1} in concjunction |
|
169 |
with @{ML atac} in order to reduce the number of possibilities that |
|
170 |
need to be explored. You can use the tactic as follows. |
|
171 |
*} |
|
172 |
||
173 |
lemma |
|
174 |
shows "((((P \<longrightarrow> Q) \<longrightarrow> P) \<longrightarrow> P) \<longrightarrow> Q) \<longrightarrow> Q" |
|
175 |
apply(tactic {* (DEPTH_SOLVE o apply_tac) 1 *}) |
|
176 |
done |
|
177 |
||
178 |
text {* |
|
179 |
We can use the tactic to prove or disprove automatically the |
|
180 |
de Bruijn formulae from Exercise \ref{ex:debruijn}. |
|
181 |
*} |
|
182 |
||
183 |
ML{*fun de_bruijn_prove ctxt n = |
|
184 |
let |
|
185 |
val goal = HOLogic.mk_Trueprop (HOLogic.mk_imp (lhs n n, rhs n)) |
|
186 |
in |
|
187 |
Goal.prove ctxt ["P"] [] goal |
|
188 |
(fn _ => (DEPTH_SOLVE o apply_tac) 1) |
|
189 |
end*} |
|
190 |
||
191 |
text {* |
|
192 |
You can use this function to prove de Bruijn formulae. |
|
193 |
*} |
|
194 |
||
195 |
ML{*de_bruijn_prove @{context} 3 *} |
|
196 |
||
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
197 |
text {* \solution{ex:addsimproc} *} |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
198 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
199 |
ML{*fun dest_sum term = |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
200 |
case term of |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
201 |
(@{term "(op +):: nat \<Rightarrow> nat \<Rightarrow> nat"} $ t1 $ t2) => |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
202 |
(snd (HOLogic.dest_number t1), snd (HOLogic.dest_number t2)) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
203 |
| _ => raise TERM ("dest_sum", [term]) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
204 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
205 |
fun get_sum_thm ctxt t (n1, n2) = |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
206 |
let |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
207 |
val sum = HOLogic.mk_number @{typ "nat"} (n1 + n2) |
132 | 208 |
val goal = Logic.mk_equals (t, sum) |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
209 |
in |
214
7e04dc2368b0
updated to latest Isabelle
Christian Urban <urbanc@in.tum.de>
parents:
192
diff
changeset
|
210 |
Goal.prove ctxt [] [] goal (K (Arith_Data.arith_tac ctxt 1)) |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
211 |
end |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
212 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
213 |
fun add_sp_aux ss t = |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
214 |
let |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
215 |
val ctxt = Simplifier.the_context ss |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
216 |
val t' = term_of t |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
217 |
in |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
218 |
SOME (get_sum_thm ctxt t' (dest_sum t')) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
219 |
handle TERM _ => NONE |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
220 |
end*} |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
221 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
222 |
text {* The setup for the simproc is *} |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
223 |
|
177 | 224 |
simproc_setup %gray add_sp ("t1 + t2") = {* K add_sp_aux *} |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
225 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
226 |
text {* and a test case is the lemma *} |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
227 |
|
405
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
228 |
lemma "P (Suc (99 + 1)) ((0 + 0)::nat) (Suc (3 + 3 + 3)) ((4 + 1)::nat)" |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
229 |
apply(tactic {* simp_tac (HOL_basic_ss addsimprocs [@{simproc add_sp}]) 1 *}) |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
230 |
txt {* |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
231 |
where the simproc produces the goal state |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
232 |
|
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
233 |
\begin{minipage}{\textwidth} |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
234 |
@{subgoals [display]} |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
235 |
\end{minipage}\bigskip |
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
236 |
*}(*<*)oops(*>*) |
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
237 |
|
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
238 |
text {* \solution{ex:addconversion} *} |
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
239 |
|
168
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
240 |
text {* |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
241 |
The following code assumes the function @{ML dest_sum} from the previous |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
242 |
exercise. |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
243 |
*} |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
244 |
|
407 | 245 |
ML{*fun add_simple_conv ctxt ctrm = |
166
00d153e32a53
improvments to the solutions suggested by Sacha B?hme
Christian Urban <urbanc@in.tum.de>
parents:
158
diff
changeset
|
246 |
let |
405
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
247 |
val trm = Thm.term_of ctrm |
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
248 |
in |
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
249 |
case trm of |
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
250 |
@{term "(op +)::nat \<Rightarrow> nat \<Rightarrow> nat"} $ _ $ _ => |
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
251 |
get_sum_thm ctxt trm (dest_sum trm) |
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
252 |
| _ => Conv.all_conv ctrm |
166
00d153e32a53
improvments to the solutions suggested by Sacha B?hme
Christian Urban <urbanc@in.tum.de>
parents:
158
diff
changeset
|
253 |
end |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
254 |
|
424 | 255 |
val add_conv = Conv.bottom_conv add_simple_conv |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
256 |
|
410 | 257 |
fun add_tac ctxt = CONVERSION (add_conv ctxt)*} |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
258 |
|
168
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
259 |
text {* |
175 | 260 |
A test case for this conversion is as follows |
168
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
261 |
*} |
009ca4807baa
polished somewhat the recipes and solutions
Christian Urban <urbanc@in.tum.de>
parents:
167
diff
changeset
|
262 |
|
405
f8d020bbc2c0
improved section on conversions
Christian Urban <urbanc@in.tum.de>
parents:
402
diff
changeset
|
263 |
lemma "P (Suc (99 + 1)) ((0 + 0)::nat) (Suc (3 + 3 + 3)) ((4 + 1)::nat)" |
186
371e4375c994
made the Ackermann function example safer and included suggestions from MW
Christian Urban <urbanc@in.tum.de>
parents:
178
diff
changeset
|
264 |
apply(tactic {* add_tac @{context} 1 *})? |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
265 |
txt {* |
175 | 266 |
where it produces the goal state |
151
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
267 |
|
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
268 |
\begin{minipage}{\textwidth} |
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
269 |
@{subgoals [display]} |
7e0bf13bf743
added more material to the attribute section; merged the recipe about named theorems into the main body; added a solution to an exercise in the conversion section
Christian Urban <urbanc@in.tum.de>
parents:
132
diff
changeset
|
270 |
\end{minipage}\bigskip |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
271 |
*}(*<*)oops(*>*) |
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
272 |
|
407 | 273 |
text {* \solution{ex:compare} *} |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
274 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
275 |
text {* |
174 | 276 |
We use the timing function @{ML timing_wrapper} from Recipe~\ref{rec:timing}. |
277 |
To measure any difference between the simproc and conversion, we will create |
|
278 |
mechanically terms involving additions and then set up a goal to be |
|
279 |
simplified. We have to be careful to set up the goal so that |
|
178
fb8f22dd8ad0
adapted to latest Attrib.setup changes and more work on the simple induct chapter
Christian Urban <urbanc@in.tum.de>
parents:
177
diff
changeset
|
280 |
other parts of the simplifier do not interfere. For this we construct an |
174 | 281 |
unprovable goal which, after simplification, we are going to ``prove'' with |
351 | 282 |
the help of ``\isacommand{sorry}'', that is the method @{ML Skip_Proof.cheat_tac} |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
283 |
|
174 | 284 |
For constructing test cases, we first define a function that returns a |
285 |
complete binary tree whose leaves are numbers and the nodes are |
|
286 |
additions. |
|
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
287 |
*} |
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
288 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
289 |
ML{*fun term_tree n = |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
290 |
let |
328
c0cae24b9d46
updated to new Isabelle; more work on the data section
Christian Urban <urbanc@in.tum.de>
parents:
316
diff
changeset
|
291 |
val count = Unsynchronized.ref 0; |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
292 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
293 |
fun term_tree_aux n = |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
294 |
case n of |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
295 |
0 => (count := !count + 1; HOLogic.mk_number @{typ nat} (!count)) |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
296 |
| _ => Const (@{const_name "plus"}, @{typ "nat\<Rightarrow>nat\<Rightarrow>nat"}) |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
297 |
$ (term_tree_aux (n - 1)) $ (term_tree_aux (n - 1)) |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
298 |
in |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
299 |
term_tree_aux n |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
300 |
end*} |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
301 |
|
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
302 |
text {* |
178
fb8f22dd8ad0
adapted to latest Attrib.setup changes and more work on the simple induct chapter
Christian Urban <urbanc@in.tum.de>
parents:
177
diff
changeset
|
303 |
This function generates for example: |
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
304 |
|
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
305 |
@{ML_response_fake [display,gray] |
440
a0b280dd4bc7
partially moved from string_of_term to pretty_term
Christian Urban <urbanc@in.tum.de>
parents:
426
diff
changeset
|
306 |
"pwriteln (pretty_term @{context} (term_tree 2))" |
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
307 |
"(1 + 2) + (3 + 4)"} |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
308 |
|
174 | 309 |
The next function constructs a goal of the form @{text "P \<dots>"} with a term |
310 |
produced by @{ML term_tree} filled in. |
|
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
311 |
*} |
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
312 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
313 |
ML{*fun goal n = HOLogic.mk_Trueprop (@{term "P::nat\<Rightarrow> bool"} $ (term_tree n))*} |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
314 |
|
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
315 |
text {* |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
316 |
Note that the goal needs to be wrapped in a @{term "Trueprop"}. Next we define |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
317 |
two tactics, @{text "c_tac"} and @{text "s_tac"}, for the conversion and simproc, |
174 | 318 |
respectively. The idea is to first apply the conversion (respectively simproc) and |
351 | 319 |
then prove the remaining goal using @{ML "cheat_tac" in Skip_Proof}. |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
320 |
*} |
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
321 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
322 |
ML{*local |
225
7859fc59249a
section for further material about simple inductive
Christian Urban <urbanc@in.tum.de>
parents:
214
diff
changeset
|
323 |
fun mk_tac tac = |
351 | 324 |
timing_wrapper (EVERY1 [tac, K (Skip_Proof.cheat_tac @{theory})]) |
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
325 |
in |
352
9f12e53eb121
polished theorem section
Christian Urban <urbanc@in.tum.de>
parents:
351
diff
changeset
|
326 |
val c_tac = mk_tac (add_tac @{context}) |
407 | 327 |
val s_tac = mk_tac (simp_tac |
328 |
(HOL_basic_ss addsimprocs [@{simproc add_sp}])) |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
329 |
end*} |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
330 |
|
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
331 |
text {* |
175 | 332 |
This is all we need to let the conversion run against the simproc: |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
333 |
*} |
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
334 |
|
174 | 335 |
ML{*val _ = Goal.prove @{context} [] [] (goal 8) (K c_tac) |
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
336 |
val _ = Goal.prove @{context} [] [] (goal 8) (K s_tac)*} |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
337 |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
338 |
text {* |
174 | 339 |
If you do the exercise, you can see that both ways of simplifying additions |
178
fb8f22dd8ad0
adapted to latest Attrib.setup changes and more work on the simple induct chapter
Christian Urban <urbanc@in.tum.de>
parents:
177
diff
changeset
|
340 |
perform relatively similar with perhaps some advantages for the |
174 | 341 |
simproc. That means the simplifier, even if much more complicated than |
342 |
conversions, is quite efficient for tasks it is designed for. It usually does not |
|
343 |
make sense to implement general-purpose rewriting using |
|
172
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
344 |
conversions. Conversions only have clear advantages in special situations: |
ec47352e99c2
improved the solution for the simproc/conversion exercise
Christian Urban <urbanc@in.tum.de>
parents:
168
diff
changeset
|
345 |
for example if you need to have control over innermost or outermost |
174 | 346 |
rewriting, or when rewriting rules are lead to non-termination. |
167
3e30ea95c7aa
added temporarily some timing test about conversions and simprocs
Christian Urban <urbanc@in.tum.de>
parents:
166
diff
changeset
|
347 |
*} |
130
a21d7b300616
polished the section about simprocs and added an exercise
Christian Urban <urbanc@in.tum.de>
parents:
80
diff
changeset
|
348 |
|
270
bfcabed9079e
included an alternative solution for the "rev_sum" example as a comment
griff
parents:
225
diff
changeset
|
349 |
end |